forked from koajs/convert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 861 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
{
"name": "koa-convert",
"version": "1.2.0",
"keywords": [
"koa",
"middleware",
"convert"
],
"description": "convert koa legacy generator-based middleware to promise-based middleware",
"repository": {
"type": "git",
"url": "git+https://github.com/gyson/koa-convert.git"
},
"main": "index.js",
"scripts": {
"test": "standard && mocha test.js"
},
"author": "gyson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyson/koa-convert/issues"
},
"homepage": "https://github.com/gyson/koa-convert#readme",
"dependencies": {
"co": "^4.6.0",
"koa-compose": "^3.0.0"
},
"devDependencies": {
"koa": "^2.0.0-alpha.2",
"koa-v1": "^1.0.0",
"mocha": "^2.3.3",
"standard": "^5.3.1",
"supertest": "^1.1.0"
},
"engines": {
"node": ">= 4"
}
}