forked from SBoudrias/Inquirer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 960 Bytes
/
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
46
{
"private": true,
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"codecov": "^3.6.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-xo": "^0.27.1",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.17.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"pretest": "eslint .",
"test": "jest --coverage && lerna exec npm test --scope inquirer"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {}
}