-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "node-async-router",
"version": "0.0.3",
"description": "A drop-in replacement router with seamless support for ES2016/ES7 async functions. Compatible with Express and other middle-ware based frameworks.",
"main": "lib/node-async-router.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmar777/node-async-router.git"
},
"keywords": [
"async",
"router",
"promises",
"async",
"functions",
"es7",
"es6",
"es2015",
"es2016",
"express"
],
"author": "Jeremy Martin <jmar777@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmar777/node-async-router/issues"
},
"homepage": "https://github.com/jmar777/node-async-router#readme",
"dependencies": {
"methods": "^1.1.2",
"router": "^1.1.4"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"express": "^4.13.4",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}