-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
{
"name": "moa2",
"version": "2.0.7",
"private": false,
"main": "index.js",
"description": "Koa web app framework",
"scripts": {
"start": "export NODE_ENV=development && ./node_modules/.bin/supervisor ./bin/www",
"production": "export NODE_ENV=production && ./node_modules/.bin/supervisor ./bin/www",
"development": "export NODE_ENV=development && ./node_modules/.bin/supervisor ./bin/www",
"async": "./node_modules/.bin/supervisor ./bin/run",
"ava": "standard && ./node_modules/.bin/ava -v",
"test": "export NODE_ENV=production && node test.js"
},
"dependencies": {
"bluebird": "^2.9.34",
"co": "^4.6.0",
"debug": "^2.2.0",
"extend": "^3.0.0",
"get_koa_middlewares_object_with_config": "^1.0.4",
"is": "^3.1.0",
"jade": "^1.11.0",
"jsonwebtoken": "^5.0.4",
"koa": "^2.0.1",
"koa-bodyparser": "^3.1.0",
"koa-compress": "^2.0.0",
"koa-favicon": "^2.0.0",
"koa-json": "^2.0.2",
"koa-log4": "^2.0.1",
"koa-logger": "^2.0.0",
"koa-router": "^7.0.0",
"koa-static": "^3.0.0",
"koa-views": "^5.0.1",
"koa.res.api": "^2.0.0",
"kp": "^1.1.0",
"log1": "^1.0.7",
"morgan": "~1.6.1",
"mount-controllers": "^1.0.7",
"mount-koa-routes": "^2.0.1",
"mount-middlewares": "^1.0.7",
"mount-models": "^1.0.8",
"mount-services": "^1.0.7",
"msgpack5": "^3.1.0"
},
"devDependencies": {
"ava": "^0.15.2",
"gulp": "^3.9.0",
"gulp-ava": "^0.12.1",
"sinon": "^1.11.1",
"standard": "*",
"superkoa": "^1.0.0",
"supervisor": "^0.7.1"
},
"license": "MIT",
"repository": "moajs/moa2",
"engines": {
"node": ">= 4.0"
},
"standard": {
"globals": [
"log",
"info",
"warn",
"error",
"dir",
"time",
"timeEnd",
"trace",
"assert"
],
"ignore": [
"app/",
"public/**/*"
]
}
}