forked from SBoudrias/Inquirer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 964 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 964 Bytes
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
{
"private": true,
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.2",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-config-xo": "^0.23.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lerna": "^3.0.0",
"lint-staged": "^7.0.0",
"prettier": "^1.7.0",
"regenerator-runtime": "^0.12.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"precommit": "lint-staged",
"pretest": "eslint .",
"test": "jest --coverage && lerna exec npm test --scope inquirer"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}