forked from eggjs/egg-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.35 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
88
89
90
{
"name": "egg-bin",
"version": "4.18.1",
"description": "egg developer tool",
"main": "index.js",
"bin": {
"egg-bin": "bin/egg-bin.js",
"mocha": "bin/mocha.js",
"ets": "bin/ets.js"
},
"dependencies": {
"chalk": "^4.1.1",
"co-mocha": "^1.2.2",
"common-bin": "^2.9.0",
"debug": "^4.3.1",
"detect-port": "^1.3.0",
"egg-ts-helper": "^1.25.9",
"egg-utils": "^2.4.1",
"espower-source": "^2.3.0",
"globby": "^9.2.0",
"inspector-proxy": "^1.2.1",
"intelli-espower-loader": "^1.1.0",
"jest-changed-files": "^25.5.0",
"minimatch": "^3.0.4",
"mocha": "^6.0.2",
"mz-modules": "^2.1.0",
"nyc": "^13.3.0",
"power-assert": "^1.6.1",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"test-exclude": "^5.1.0",
"ts-node": "^7",
"ypkgfiles": "^1.6.0"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"autod": "^3.1.1",
"babel": "^6.3.26",
"babel-preset-airbnb": "^1.0.1",
"babel-register": "^6.4.3",
"coffee": "^5.4.0",
"cpy": "^7.0.0",
"cross-env": "^3.1.3",
"egg": "^2.29.4",
"egg-mock": "^4.1.0",
"enzyme": "^2.0.0",
"esbuild-register": "^2.5.0",
"eslint": "^4.12.1",
"eslint-config-egg": "^7.3.1",
"git-contributor": "^1.0.10",
"jsdom": "^8.0.1",
"mm": "^3.2.0",
"mz": "^2.7.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"typescript": "^3"
},
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg-bin.git"
},
"bug": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-bin",
"author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
"scripts": {
"contributor": "git-contributor",
"lint": "eslint .",
"pkgfiles": "node bin/egg-bin.js pkgfiles",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "node bin/egg-bin.js test -t 3600000",
"cov": "nyc -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 pkgfiles -- --check && npm run ci-test-only && npm run cov",
"autod": "node bin/egg-bin.js autod"
},
"engines": {
"node": ">= 6.0.0"
},
"files": [
"index.js",
"lib",
"bin"
],
"ci": {
"version": "6, 8"
}
}