-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 955 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
41
42
43
44
45
46
47
48
49
{
"name": "co-express",
"description": "An express wrapper that enables generators to be used as middlewares",
"version": "2.0.0",
"author": {
"name": "Martín Ciparelli",
"email": "[email protected]"
},
"contributors": [
{
"name": "Martín Ciparelli",
"email": "[email protected]"
},
{
"name": "Alexey Simonenko",
"email": "[email protected]"
}
],
"keywords": [
"web",
"express",
"route",
"middleware",
"generator",
"harmony",
"continuable"
],
"repository": {
"type": "git",
"url": "git://github.com/mciparelli/co-express"
},
"main": "index",
"scripts": {
"test": "mocha --harmony"
},
"engines": {
"node": ">=v0.11.4"
},
"license": "MIT",
"optionalDependencies": {
"co": "^4.6.0"
},
"devDependencies": {
"express": "^4.14.0",
"mocha": "^3.0.2",
"should": "^10.0.0",
"supertest": "^2.0.0"
}
}