-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.85 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
{
"name": "egg",
"version": "0.8.0",
"description": "A web framework's framework for Node.js",
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"koa",
"egg"
],
"dependencies": {
"accepts": "^1.3.3",
"agentkeepalive": "^3.0.0",
"cluster-client": "^1.0.1",
"co": "^4.6.0",
"debug": "^2.6.0",
"delegates": "^1.0.0",
"egg-cluster": "^1.2.0",
"egg-cookies": "^2.1.0",
"egg-core": "^1.4.0",
"egg-development": "^1.1.0",
"egg-i18n": "^1.1.0",
"egg-logger": "^1.5.0",
"egg-logrotator": "^2.2.2",
"egg-multipart": "^1.0.0",
"egg-onerror": "^1.2.2",
"egg-schedule": "^2.2.1",
"egg-security": "^1.3.0",
"egg-session": "^1.1.0",
"egg-static": "^1.1.0",
"egg-userrole": "^1.0.0",
"egg-userservice": "^1.0.0",
"egg-validate": "^1.0.0",
"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.3.0",
"koa-is-json": "^1.0.0",
"koa-override": "^1.0.0",
"mime-types": "^2.1.13",
"sdk-base": "^3.0.1",
"sendmessage": "^1.1.0",
"urllib": "^2.19.0"
},
"devDependencies": {
"autod": "^2.7.1",
"autod-egg": "^1.0.0",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.0",
"coffee": "^3.3.0",
"cross-env": "^2.0.1",
"egg-alinode": "^1.0.3",
"egg-bin": "^1.3.0",
"egg-ci": "^1.0.3",
"egg-mock": "^2.0.0",
"egg-plugin-puml": "^1.0.0",
"egg-view-nunjucks": "^0.5.0",
"eslint": "^3.13.1",
"eslint-config-egg": "^3.1.0",
"estraverse": "^4.1.1",
"formstream": "^1.1.0",
"glob": "^7.1.1",
"ko-sleep": "^1.0.2",
"koa": "^1.2.4",
"koa-router": "^7.1.0",
"merge-descriptors": "^1.0.1",
"mm": "^2.0.0",
"moment": "^2.17.1",
"mz": "^2.4.0",
"npminstall": "^2.1.1",
"nunjucks": "^3.0.0",
"once": "^1.3.3",
"pedding": "^1.1.0",
"rds": "^0.1.0",
"rimraf": "^2.5.4",
"should": "^11.1.2",
"stream-wormhole": "^1.0.0",
"supertest": "^2.0.1",
"toa": "^2.5.0",
"toa-router": "^2.0.1"
},
"main": "index.js",
"files": [
"app",
"config",
"bin",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint lib test *.js",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov",
"doc-server": "./scripts/doc.sh server",
"doc-deploy": "./scripts/doc.sh deploy",
"autod": "autod",
"puml": "puml . --dest ./docs",
"commits": "./scripts/commits.sh"
},
"homepage": "https://github.com/eggjs/egg",
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg.git"
},
"engines": {
"node": ">=6.0.0"
},
"ci": {
"version": "6, 7"
},
"license": "MIT"
}