-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "express-conditional-middleware",
"description": "Allow express middlewares to be overridden based on a condition.",
"repository": {
"type": "git",
"url": "https://github.com/elliotttf/express-conditional-middleware.git"
},
"main": "lib/conditional.js",
"scripts": {
"test": "istanbul cover --print both nodeunit ./test/index.js",
"lint": "eslint .",
"coverage": "istanbul check-coverage --statements 100 --lines 100 --branches 100 --functions 100",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Elliott Foster <[email protected]> (http://codebrews.com/)",
"license": "MIT",
"dependencies": {
"once": "1.4.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"ghooks": "^2.0.0",
"istanbul": "^0.4.2",
"nodeunit": "^0.11.0",
"semantic-release": "^8.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"engines": {
"node": ">=6"
}
}