forked from koajs/koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1010 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
50
51
52
{
"name": "koa",
"version": "0.1.2",
"description": "Koa web app framework",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "make test"
},
"repository": "koajs/koa",
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"rack"
],
"license": "MIT",
"dependencies": {
"on-socket-error": "~1.0.1",
"co": "~3.0.1",
"debug": "*",
"mime": "~1.2.11",
"fresh": "~0.2.0",
"negotiator": "~0.3.0",
"koa-compose": "~2.1.0",
"cookies": "~0.3.7",
"keygrip": "~1.0.0"
},
"devDependencies": {
"bytes": "~0.2.1",
"should": "~2.1.0",
"mocha": "~1.16.0",
"supertest": "~0.8.1",
"co-fs": "~1.1",
"co-views": "~0.1.0",
"ejs": "~0.8.4",
"koa-logger": "~1.1.0",
"koa-static": "~1.4.0",
"co-busboy": "~0.1.0",
"koa-route": "~1.0.2",
"swig": "~1.2.0",
"co-body": "0.0.1"
},
"engines": {
"node": ">= 0.11.9"
}
}