forked from eggjs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.74 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
{
"name": "egg-core",
"version": "5.0.0",
"description": "A core Pluggable framework based on koa",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"lib",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test -p",
"cov": "egg-bin cov -p",
"ci": "npm run lint && npm run cov",
"contributor": "git-contributor"
},
"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": ">= 14.17.0"
},
"devDependencies": {
"@types/depd": "^1.1.32",
"@types/koa": "^2.0.48",
"await-event": "^2.1.0",
"coffee": "^5.2.1",
"egg-bin": "^5.9.0",
"egg-utils": "^2.4.1",
"eslint": "^8.31.0",
"eslint-config-egg": "^12.1.0",
"git-contributor": "^1.0.10",
"js-yaml": "^3.13.1",
"mm": "^3.2.1",
"pedding": "^1.1.0",
"spy": "^1.0.0",
"supertest": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"urllib": "^3.10.0"
},
"dependencies": {
"@eggjs/router": "^2.0.0",
"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": "^11.0.2",
"is-type-of": "^1.2.1",
"koa": "^2.14.0",
"koa-convert": "^1.2.0",
"node-homedir": "^1.1.1",
"ready-callback": "^2.1.0",
"tsconfig-paths": "^4.1.1",
"utility": "^1.16.1"
}
}