-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "express-ko",
"author": "ex-machine",
"version": "1.0.2",
"description": "Brings generators, promises and async functions to Express 4.x middleware and route handlers",
"keywords": [
"express",
"router",
"middleware",
"generator",
"generators",
"promise",
"promises",
"coroutine",
"co",
"async"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ex-machine/express-ko.git"
},
"engines": {
"node": ">= 4.0.0",
"iojs": ">= 3.0.0"
},
"devDependencies": {
"after": "~0.8.1",
"babel-eslint": "^5.0.0",
"bind-gen": "^0.1.3",
"bluebird": "^3.3.1",
"body-parser": "~1.14.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"cookie": "0.1.5",
"cookie-parser": "~1.4.1",
"coveralls": "^2.11.6",
"decache": "^3.0.3",
"del": "^2.2.0",
"env-test": "^1.0.0",
"express": "^4.13.4",
"extend": "^3.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.1.2",
"gulp-eslint": "^1.1.1",
"gulp-git": "^1.7.0",
"gulp-if": "^1.2.5",
"gulp-load-plugins": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-spawn-mocha": "^2.2.2",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"mversion": "^1.10.0",
"nodegit": ">=0.11.0 <1",
"on-finished": "~2.3.0",
"pify": "^2.3.0",
"run-sequence": "^1.1.1",
"semver": "^5.1.0",
"should": "^8.2.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.0.0",
"supertest-chai": "0.0.8",
"utils-merge": "1.0.0"
},
"dependencies": {
"array-equal": "^1.0.0",
"co": "^4.0.0",
"methods": "^1.0.0"
},
"peerDependencies": {
"express": "^4.0.0"
},
"//": [
"npm run version -- 1.0.0"
],
"scripts": {
"version": "mversion -n -m %s",
"test": "gulp test"
}
}