forked from tur-nr/node-mware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
61
62
63
64
65
66
{
"name": "mware-async",
"version": "0.1.1",
"description": "Create async middleware stacks.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"browser": "dist/mware-async.js",
"scripts": {
"build": "gulp build",
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=lcov ava",
"prepublish": "npm run build"
},
"repository": {
"url": "git+https://github.com/9technology/mware-async.git",
"type": "git"
},
"keywords": [
"middleware",
"use",
"next",
"async"
],
"author": "9Technology <opensource@nine.com.au>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/9technology/mware-async/issues"
},
"homepage": "https://github.com/9technology/mware-async",
"dependencies": {
"any-promise": "^1.3.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.3",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"del": "^2.2.2",
"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
}
}