-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "kona",
"version": "0.10.4",
"description": "a premium Node.js MVC framework built on koa",
"bin": "./bin/cli.js",
"main": "./lib/kona.js",
"directories": {
"test": "test"
},
"repository": "https://github.com/jbielick/kona",
"dependencies": {
"chalk": "^1.0.0",
"chokidar": "^1.0.3",
"class-extend": "^0.1.1",
"co": "^4.5.4",
"co-fs": "^1.2.0",
"commander": "^2.8.1",
"debug": "^2.2.0",
"delegates": "^0.1.0",
"dotenv": "^1.2.0",
"koa": "^0.21.0",
"koa-barista": "0.0.2",
"koa-bodyparser": "^2.0.0",
"koa-compose": "^2.3.0",
"koa-conditional-get": "^1.0.2",
"koa-error": "^1.1.2",
"koa-etag": "^2.0.0",
"koa-favicon": "^1.2.0",
"koa-logger": "^1.2.2",
"koa-methodoverride": "^0.3.1",
"koa-response-time": "^1.0.2",
"koa-session": "^3.1.0",
"koa-static": "^1.4.9",
"koa-views": "^3.0.0",
"lodash": "^2.4.2",
"node-cache": "^2.1.1",
"require-all": "^1.1.0",
"swig": "^1.4.2",
"underscore.inflections": "^0.2.1",
"winston": "^1.0.0"
},
"devDependencies": {
"chai": "^1.9.2",
"istanbul-harmony": "^0.3.0",
"mocha": "^2.0.1",
"sinon": "^1.11.1",
"sinon-chai": "^2.6.0",
"statuses": "^1.2.0",
"supertest": "^0.14.0"
},
"scripts": {
"test": "NODE_ENV=test mocha --harmony test/**",
"test-cov": "NODE_ENV=test node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports test/** --bail"
},
"keywords": [
"framework",
"mvc",
"koa",
"generators",
"async",
"co",
"es6",
"modular",
"yield"
],
"engines": {
"node": ">=0.11.0"
},
"engineStrict": true,
"author": "Josh Bielick <jbielick@gmail.com> (http://joshbielick.com)",
"license": "MIT"
}