-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.45 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
{
"name": "egg",
"version": "1.4.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.2.0",
"cluster-client": "^1.6.4",
"co": "^4.6.0",
"debug": "^2.6.8",
"delegates": "^1.0.0",
"egg-cluster": "^1.7.0",
"egg-cookies": "^2.2.1",
"egg-core": "^3.10.0",
"egg-development": "^1.3.1",
"egg-i18n": "^1.1.1",
"egg-jsonp": "^1.1.1",
"egg-logger": "^1.6.0",
"egg-logrotator": "^2.2.3",
"egg-multipart": "^1.5.0",
"egg-onerror": "^1.4.4",
"egg-schedule": "^2.4.1",
"egg-security": "^1.10.1",
"egg-session": "^2.1.1",
"egg-static": "^1.4.1",
"egg-view": "^1.1.1",
"egg-watcher": "^2.1.3",
"extend2": "^1.0.0",
"graceful": "^1.0.1",
"is-type-of": "^1.0.0",
"koa-bodyparser": "^2.5.0",
"koa-is-json": "^1.0.0",
"mime-types": "^2.1.15",
"sendmessage": "^1.1.0",
"urllib": "^2.22.0",
"utility": "^1.12.0",
"ylru": "^1.0.0"
},
"devDependencies": {
"autod": "^2.8.0",
"autod-egg": "^1.0.0",
"coffee": "^3.3.2",
"egg-alinode": "^1.0.3",
"egg-bin": "^3.4.2",
"egg-doctools": "^2.0.0",
"egg-mock": "^3.7.2",
"egg-plugin-puml": "^2.4.0",
"egg-view-nunjucks": "^2.1.2",
"eslint": "^3.19.0",
"eslint-config-egg": "^4.2.0",
"findlinks": "^1.1.0",
"formstream": "^1.1.0",
"glob": "^7.1.2",
"koa-static": "^3.0.0",
"mz-modules": "^1.0.0",
"pedding": "^1.1.0",
"runscript": "^1.2.1",
"spy": "^1.0.0",
"supertest": "^3.0.0",
"webstorm-disable-index": "^1.1.2"
},
"main": "index.js",
"files": [
"app",
"config",
"bin",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint app config lib test *.js",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov --timeout 100000",
"ci": "npm run lint && npm run cov",
"doc-server": "doctools server",
"doc-build": "doctools build",
"doc-deploy": "doctools 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"
},
"license": "MIT"
}