-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.68 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
48
49
50
51
52
53
54
{
"name": "express-test-util",
"version": "1.1.4",
"description": "test utils for express middlewares",
"homepage": "https://github.com/renrenche/express-test-util",
"author": {
"name": "wangshijun",
"email": "[email protected]",
"url": "https://github.com/wangshijun"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"express",
"test",
"util"
],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "^3.9.0",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "https://github.com/renrenche/express-test-util.git",
"scripts": {
"dev": "node_modules/.bin/mocha -w test",
"prepublish": "gulp prepublish",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"test:unit": "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --reporter spec test",
"test:coverage": "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive --reporter tap test > test.tap && node_modules/.bin/istanbul report clover"
},
"license": "Apache-2.0"
}