-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"author": "Jan Dolezel <[email protected]>",
"license": "MIT",
"repository": "https://github.com/salsita/nodejs-modules",
"scripts": {
"lint": "eslint -c eslintrc.js .",
"lintfix": "npm run lint -- --fix",
"test": "cross-env NODE_ENV=test mocha --recursive --require ./mocha.bootstrap.js \"./packages/*/{,!(node_modules)/**/}*.spec.js\"",
"test:watch": "npm test -- --watch",
"lerna": "lerna",
"postinstall": "for package in packages/*; do npm install --prefix $package; done",
"postoutdated": "for package in packages/*; do npm outdated --prefix $package; done"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"chai": "4.3.4",
"cross-env": "7.0.3",
"eslint": "7.25.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-security": "1.4.0",
"husky": "4.3.8",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"mocha": "8.3.2",
"prettier": "2.2.1",
"sinon": "9.2.4",
"sinon-chai": "3.6.0"
},
"lint-staged": {
"*.js": ["npm run lintfix"],
"*.{json,md}": ["prettier --write"]
},
"name": "nodejs-modules",
"engines": {
"npm": "6.14.13"
}
}