-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 964 Bytes
/
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": "middleware-flow",
"version": "0.8.0",
"description": "Middleware control flow library: series, parallel, or, and",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"test": "lab -a code -l -c test",
"test-watch": "nodemon --exec npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/tjmehta/middleware-flow.git"
},
"author": "Tejesh Mehta",
"contributors": [
"Bryan Kendall <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/middleware-flow/issues"
},
"homepage": "https://github.com/tjmehta/middleware-flow",
"dependencies": {
"101": "^0.16.1",
"callback-count": "0.0.3"
},
"devDependencies": {
"body-parser": "^1.12.3",
"code": "^1.4.0",
"eslint": "^0.19.0",
"express": "^4.12.3",
"lab": "^5.6.0",
"nodemon": "^1.3.7",
"supertest": "^0.9.0"
}
}