-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.9 KB
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
{
"name": "egg-core",
"version": "5.5.1",
"publishConfig": {
"tag": "latest-5"
},
"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 --full-trace",
"test-single": "egg-bin test",
"cov": "egg-bin cov -p",
"ci": "npm run lint && npm run cov",
"contributor": "git-contributor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/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/core#readme",
"engines": {
"node": ">= 14.19.0"
},
"devDependencies": {
"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",
"path-to-regexp-v8": "npm:path-to-regexp@8"
},
"dependencies": {
"@eggjs/router": "^2.2.0",
"@types/depd": "^1.1.32",
"@types/koa": "^2.13.5",
"co": "^4.6.0",
"debug": "^4.1.1",
"depd": "^2.0.0",
"egg-logger": "^3.1.0",
"egg-path-matching": "^1.2.0",
"extend2": "^1.0.0",
"gals": "^1.0.1",
"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": "^3.0.0",
"tsconfig-paths": "^4.1.1",
"utility": "^1.16.1"
}
}