-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 959 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": "composition",
"description": "Compose generator and async/await middleware",
"version": "2.3.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"repository": "thenables/composition",
"dependencies": {
"any-promise": "^1.1.0",
"co": "^4.0.2"
},
"devDependencies": {
"bluebird": "^3.1.1",
"istanbul": "^0.4.2",
"koa-compose": "^2.3.0",
"matcha": "^0.6.0",
"mocha": "^2.0.0",
"timeout-then": "^1.0.0"
},
"scripts": {
"bench": "matcha bench/run.js",
"test": "mocha --bail",
"test-cov": "istanbul cover ./node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"co",
"compose",
"composition",
"middleware",
"decorator",
"decorators",
"async",
"await",
"yield"
],
"files": [
"index.js"
]
}