forked from eggjs/egg-bin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.07 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
{
"name": "@zhennann/egg-bin",
"version": "7.0.1",
"publishConfig": {
"tag": "latest-5"
},
"description": "egg developer tool",
"files": [
"index.js",
"lib",
"bin"
],
"main": "index.js",
"bin": {
"egg-bin": "bin/egg-bin.js",
"mocha": "bin/mocha.js",
"ets": "bin/ets.js",
"c8": "bin/c8.js"
},
"dependencies": {
"@zhennann/common-bin": "^4.0.0",
"c8": "^9.1.0",
"chalk": "^4.1.2",
"detect-port": "^1.3.0",
"egg-ts-helper": "^1.30.3",
"egg-utils": "^2.4.1",
"globby": "^11.1.0",
"inspector-proxy": "^1.2.2",
"jest-changed-files": "^28.0.2",
"mocha": "^10.2.0",
"mochawesome-with-mocha": "^7.1.3",
"runscript": "^1.5.3",
"test": "^3.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.1",
"ypkgfiles": "^1.6.0"
},
"peerDependencies": {
"egg-mock": ">=5.8.3"
},
"peerDependenciesMeta": {
"egg-mock": {
"optional": true
}
},
"devDependencies": {
"@eggjs/tsconfig": "^1.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.36",
"coffee": "^5.4.0",
"cross-env": "^3.1.3",
"egg": "^3.9.1",
"egg-mock": "^5.10.2",
"esbuild-register": "^2.5.0",
"eslint": "^8.16.0",
"eslint-config-egg": "^12.0.0",
"git-contributor": "2",
"mm": "^3.2.0",
"typescript": "^4.7.2"
},
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-bin.git"
},
"bug": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-bin",
"author": "fengmk2 <[email protected]> (https://github.com/fengmk2)",
"scripts": {
"postinstall": "node bin/postinstall.js",
"contributor": "git-contributor",
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "node bin/egg-bin.js test -t 120000",
"cov": "c8 -r lcov -r text-summary npm run test-local",
"ci-test-only": "npm run test-local -- test/lib/cmd/cov.test.js",
"ci": "npm run lint && npm run ci-test-only && npm run test-local"
},
"engines": {
"node": ">= 14.0.0"
}
}