forked from eggjs/egg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.04 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "egg",
"version": "0.1.3",
"description": "A web framework's framework for Node.js",
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"koa",
"egg"
],
"dependencies": {
"accepts": "^1.3.3",
"agentkeepalive": "^2.2.0",
"co": "^4.6.0",
"debug": "^2.2.0",
"delegates": "^1.0.0",
"egg-cluster": "^0.1.0",
"egg-cookies": "^1.0.0",
"egg-core": "^0.2.1",
"egg-cors": "^0.0.2",
"egg-development": "^0.0.2",
"egg-i18n": "^1.0.2",
"egg-logger": "^1.2.0",
"egg-logrotator": "^2.1.0",
"egg-multipart": "^1.0.0",
"egg-onerror": "^0.0.3",
"egg-rest": "^1.0.0",
"egg-schedule": "^2.0.0",
"egg-security": "^1.2.1",
"egg-session": "^0.0.2",
"egg-static": "^0.1.0",
"egg-userrole": "^0.1.0",
"egg-userservice": "^1.0.0",
"egg-validate": "^0.0.2",
"egg-watcher": "^1.0.0",
"graceful": "^1.0.1",
"humanize-ms": "^1.2.0",
"is-type-of": "^1.0.0",
"jsonp-body": "^1.0.0",
"koa-bodyparser": "^2.2.0",
"koa-is-json": "^1.0.0",
"koa-override": "^1.0.0",
"mime-types": "^2.1.11",
"scmp": "^1.0.0",
"sdk-base": "^2.0.1",
"sendmessage": "^1.0.5",
"urllib": "^2.13.0"
},
"devDependencies": {
"autod": "^2.7.1",
"autod-egg": "^1.0.0",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.0",
"co-sleep": "^0.0.1",
"coffee": "^3.2.5",
"cross-env": "^2.0.1",
"egg-alinode": "^1.0.3",
"egg-bin": "1",
"egg-ci": "1",
"egg-mock": "^0.0.4",
"egg-plugin-puml": "1",
"egg-view-nunjucks": "^0.3.0",
"eslint": "^3.0.0",
"eslint-config-egg": "^3.1.0",
"estraverse": "^4.1.1",
"formstream": "^1.0.0",
"glob": "^7.0.6",
"koa": "^1.2.2",
"koa-router": "^5.4.0",
"merge-descriptors": "^1.0.1",
"moment": "^2.14.1",
"npminstall": "^2.1.1",
"nunjucks": "^2.4.2",
"once": "^1.3.3",
"pedding": "^1.0.0",
"rds": "^0.1.0",
"rimraf": "^2.5.4",
"should": "^11.1.0",
"stream-wormhole": "^1.0.0",
"supertest": "^2.0.0",
"toa": "^1.8.11",
"toa-router": "^1.5.1"
},
"main": "index.js",
"files": [
"app",
"config",
"bin",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint --fix lib test examples *.js",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"test-examples": "cross-env TESTS=examples/**/test/**/*.test.js egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run test-examples && npm run cov",
"doc-server": "./scripts/doc.sh server",
"doc-deploy": "./scripts/doc.sh deploy",
"autod": "autod",
"autod-china": "autod --registry=https://registry.npm.taobao.org",
"puml": "puml . --dest ./docs",
"commits": "./scripts/commits.sh",
"example": "node examples/start.js"
},
"homepage": "https://github.com/eggjs/egg",
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg.git"
},
"engines": {
"node": ">= 4.4.7"
},
"ci": {
"version": "4, 6"
}
}