-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "lando-mutagen",
"version": "1.0.12",
"description": "Automatically start and stop mutagen when starting and stopping a Lando project.",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"compile": "tsc",
"package": "yarn clean && yarn compile && cp CHANGELOG.md dist && cp package.json dist && cp yarn.lock dist && cd dist && yarn install --production --immutable --immutable-cache --check-cache",
"install:home": "yarn compile && rm -rf ~/.lando/plugins/lando_mutagen && mkdir -p ~/.lando/plugins && cp -r dist ~/.lando/plugins/lando_mutagen",
"coverage": "nyc report --reporter=text",
"lint": "eslint --quiet . --ext .ts",
"test:unit": "nyc --reporter=text ts-mocha --timeout 5000 ./**/*.test.ts",
"test": "yarn lint && yarn test:unit"
},
"keywords": [
"lando",
"lando-plugin",
"php"
],
"author": "Francois van der Ven (francois@vanderven.dev)",
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@evilmartians/lefthook": "^1.0.0",
"@types/chai": "^4.3.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chai": "^4.3.4",
"command-line-test": "^1.0.10",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.6.2"
}
}