forked from eggjs/egg-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.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
{
"name": "egg-core",
"version": "4.17.3",
"description": "A core Pluggable framework based on koa",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && egg-bin test",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"pkgfiles": "egg-bin pkgfiles",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-core.git"
},
"keywords": [
"egg",
"loader"
],
"author": "gxcsoccer <gxcsoccer@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-core#readme",
"engines": {
"node": ">= 8.0.0"
},
"ci": {
"type": "travis",
"os": {
"travis": "linux, osx"
},
"version": "8, 10, 12",
"afterScript": "after_success:\n - npminstall codecov && codecov --disable=gcov",
"license": {
"year": 2016
}
},
"devDependencies": {
"autod": "^3.1.0",
"await-event": "^2.1.0",
"coffee": "^5.2.1",
"egg-bin": "^4.13.0",
"egg-ci": "^1.12.0",
"egg-utils": "^2.4.1",
"eslint": "^5.16.0",
"eslint-config-egg": "^7.4.1",
"jest": "^24.8.0",
"js-yaml": "^3.13.1",
"mm": "^2.5.0",
"mz-modules": "^2.1.0",
"pedding": "^1.1.0",
"rimraf": "^2.6.3",
"spy": "^1.0.0",
"supertest": "^4.0.2",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"dependencies": {
"@eggjs/router": "^2.0.0",
"@types/depd": "^1.1.32",
"@types/koa": "^2.0.48",
"co": "^4.6.0",
"debug": "^4.1.1",
"depd": "^2.0.0",
"egg-logger": "^2.4.1",
"egg-path-matching": "^1.0.1",
"extend2": "^1.0.0",
"get-ready": "^2.0.1",
"globby": "^8.0.2",
"is-type-of": "^1.2.1",
"koa": "^2.7.0",
"koa-convert": "^1.2.0",
"node-homedir": "^1.1.1",
"ready-callback": "^2.1.0",
"utility": "^1.16.1"
},
"files": [
"index.js",
"lib",
"index.d.ts"
]
}