forked from github/Pac-tocat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 975 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
{
"nyc": {
"include": [
"app/scripts/**/*.js"
],
"all": true
},
"scripts": {
"test": "nyc --check-coverage --lines 100 --functions 100 --branches 100 mocha app/tests",
"coverage": "nyc report --reporter=text-lcov | node ./node_modules/coveralls/bin/coveralls.js",
"lint": "./node_modules/.bin/eslint .",
"serve": "npx gulp && npx serve -n",
"watch": "npx gulp watch"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.6"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-remove-code": "^3.0.4",
"gulp-sass": "^5.1.0",
"husky": "^8.0.1",
"mocha": "^10.2.0",
"nyc": "^14.1.0",
"sass": "^1.26.10",
"serve": "^14.0.1",
"sinon": "^7.3.2"
}
}