-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "egg-bin",
"version": "4.13.0",
"description": "egg developer tool",
"main": "index.js",
"bin": {
"egg-bin": "bin/egg-bin.js",
"mocha": "bin/mocha.js",
"ets": "bin/ets.js"
},
"dependencies": {
"autod": "^3.1.0",
"chalk": "^2.4.2",
"co-mocha": "^1.2.2",
"common-bin": "^2.8.1",
"debug": "^4.1.1",
"detect-port": "^1.3.0",
"egg-ts-helper": "^1.25.2",
"egg-utils": "^2.4.1",
"espower-typescript": "9.0.1",
"globby": "^9.2.0",
"inspector-proxy": "^1.2.1",
"intelli-espower-loader": "^1.0.1",
"jest-changed-files": "^24.7.0",
"mocha": "^6.0.2",
"mz-modules": "^2.1.0",
"nyc": "^13.3.0",
"power-assert": "^1.6.1",
"semver": "^6.0.0",
"test-exclude": "^5.1.0",
"ts-node": "^7",
"ypkgfiles": "^1.6.0"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"autod": "^3.1.0",
"babel": "^6.3.26",
"babel-preset-airbnb": "^1.0.1",
"babel-register": "^6.4.3",
"coffee": "^5.2.1",
"cross-env": "^3.1.3",
"egg": "^2.20.2",
"egg-mock": "^3.22.1",
"enzyme": "^2.0.0",
"eslint": "^4.12.1",
"eslint-config-egg": "^7.3.1",
"jsdom": "^8.0.1",
"mm": "^2.5.0",
"mz": "^2.7.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"semver": "^5.4.1",
"typescript": "^2.7.2"
},
"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 <[email protected]> (https://fengmk2.com)",
"scripts": {
"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": "TESTS=test/lib/cmd/cov.test.js npm run test-local",
"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"
}
}