-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
55
56
57
58
59
60
{
"name": "mware",
"version": "1.0.0",
"description": "Create middleware stacks.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"browser": "dist/mware.js",
"scripts": {
"build": "gulp build",
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=lcov ava"
},
"repository": {
"url": "https://github.com/tur-nr/node-mware",
"type": "git"
},
"keywords": [
"middleware",
"use",
"next"
],
"author": "Christopher Turner <turner296@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tur-nr/node-mware/issues"
},
"homepage": "https://github.com/tur-nr/node-mware",
"dependencies": {},
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"nyc": "^8.3.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/**/*.spec.js"
]
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false
}
}