-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.43 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
46
47
{
"name": "webapi-utils",
"version": "0.0.0-development",
"description": "Node.js / Express utilities and middlewares for Web APIs",
"homepage": "https://github.com/pintux/webapi-utils.git",
"main": "index.js",
"scripts": {
"test": "cd test && npm i && cd .. && ./node_modules/.bin/mocha -t 20000",
"cover": "./node_modules/.bin/nyc --reporter=lcov --reporter=text npm test",
"check-coverage": "./node_modules/.bin/nyc check-coverage --statements 90 --branches 50 --functions 100 --lines 90",
"precommit": "npm run cover && npm run check-coverage",
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Antonio Pintus",
"license": "MIT",
"dependencies": {
"debug": "latest"
},
"devDependencies": {
"commitizen": "^2.9.6",
"coveralls": "^2.13.0",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.3",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"semantic-release": "^6.3.2",
"supertest": "^3.0.0",
"unit.js": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pintux/webapi-utils.git"
},
"keywords": [
"Express",
"API",
"middleware",
"utility"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}