-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.19 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
{
"name": "egg-development",
"version": "3.0.2",
"description": "development tool for egg",
"eggPlugin": {
"name": "development",
"env": [
"local"
],
"dependencies": [
"watcher"
]
},
"keywords": [
"egg",
"plugin",
"egg-plugin",
"eggPlugin"
],
"dependencies": {
"debounce": "^1.1.0",
"multimatch": "^5.0.0",
"utility": "^2.4.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"egg": "3",
"egg-bin": "6",
"egg-mock": "5",
"eslint": "8",
"eslint-config-egg": "12",
"supertest": "^3.4.2"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test --ts false",
"cov": "egg-bin cov --ts false",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-development.git"
},
"files": [
"app",
"config",
"lib",
"agent.js",
"app.js"
],
"bugs": "https://github.com/eggjs/egg/issues",
"homepage": "https://github.com/eggjs/egg-development#readme",
"author": "jtyjty99999",
"license": "MIT"
}