-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
87 lines (87 loc) · 2.05 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
{
"name": "egg-mock",
"version": "5.15.1",
"eggPlugin": {
"name": "egg-mock"
},
"description": "mock server for egg",
"types": "index.d.ts",
"main": "index.js",
"files": [
"app.js",
"index.js",
"index.d.ts",
"bootstrap.js",
"bootstrap.d.ts",
"app",
"lib",
"register.js"
],
"scripts": {
"lint": "eslint lib app index.js test/*.test.js",
"tsd": "tsd",
"test": "npm run lint && npm run tsd && npm run test-local",
"test-local": "egg-bin test -r ./register.js --ts false",
"cov": "egg-bin cov -r ./register.js --ts false",
"ci": "npm run lint && npm run tsd && npm run cov"
},
"dependencies": {
"@eggjs/utils": "^4.0.2",
"@types/supertest": "^2.0.7",
"await-event": "^2.1.0",
"co": "^4.6.0",
"coffee": "^5.2.1",
"detect-port": "^2.0.1",
"egg-logger": "^3.5.0",
"extend2": "^1.0.0",
"get-ready": "^3.1.0",
"globby": "^11.1.0",
"is-type-of": "^2.2.0",
"merge-descriptors": "^1.0.1",
"methods": "^1.1.2",
"mm": "^3.0.2",
"sdk-base": "^4.2.1",
"supertest": "^6.2.4"
},
"peerDependencies": {
"egg": "^3.12.0",
"mocha": "^10.2.0",
"urllib": "^3 || ^4"
},
"devDependencies": {
"@eggjs/tegg": "^3.2.2",
"@eggjs/tegg-config": "^3.2.2",
"@eggjs/tegg-controller-plugin": "^3.2.2",
"@eggjs/tegg-plugin": "^3.2.2",
"@eggjs/tsconfig": "^1.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20",
"egg": "^3.12.0",
"egg-bin": "^6.0.0",
"egg-errors": "^2.2.1",
"egg-tracer": "^2.0.0",
"eslint": "^8.24.0",
"eslint-config-egg": "^12.0.0",
"mocha": "^10.1.0",
"pedding": "^1.1.0",
"tsd": "^0.31.0",
"typescript": "5",
"urllib": "3"
},
"homepage": "https://github.com/eggjs/egg-mock",
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-mock.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"keywords": [
"egg",
"mock"
],
"engines": {
"node": ">= 14.18.0"
},
"author": "popomore <[email protected]>"
}