-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
87 lines (87 loc) · 2.62 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-bin",
"version": "6.10.0",
"publishConfig": {
"tag": "latest"
},
"description": "egg developer tool",
"files": [
"dist",
"scripts"
],
"main": "dist/index.js",
"bin": {
"egg-bin": "dist/bin/cli.js"
},
"dependencies": {
"@artus-cli/artus-cli": "^0.2.9",
"@artus-cli/plugin-autocomplete": "^0.1.1",
"@artus-cli/plugin-version": "^1.0.1",
"@eggjs/utils": "^3.0.1",
"c8": "^10.0.0",
"detect-port": "^1.3.0",
"egg-ts-helper": "^2.1.0",
"globby": "^11.1.0",
"jest-changed-files": "^29.4.2",
"mocha": "^10.2.0",
"mochawesome-with-mocha": "^7.1.3",
"runscript": "^1.5.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.2"
},
"peerDependencies": {
"egg-mock": ">=5.10.2"
},
"peerDependenciesMeta": {
"egg-mock": {
"optional": true
}
},
"devDependencies": {
"@eggjs/tsconfig": "^1.3.0",
"@swc-node/register": "^1.6.1",
"@swc/core": "^1.3.35",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.1",
"assert-file": "^1.0.0",
"coffee": "^5.4.0",
"cpy": "^8.1.2",
"egg": "^3.9.1",
"egg-mock": "^5.10.2",
"esbuild": "^0.17.7",
"esbuild-register": "^3.4.2",
"eslint": "^8.16.0",
"eslint-config-egg": "^13.1.0",
"git-contributor": "2",
"npminstall": "^7.5.0",
"typescript": "^5.2.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 scripts/postinstall.js",
"contributor": "git-contributor",
"lint": "eslint . --cache --ext ts",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "npm run tsc && node dist/bin/cli.js test",
"test-local-with-ts-node-transpile-only": "node -r ts-node/register/transpile-only src/bin/cli.ts test",
"test-local-with-swc": "node -r @swc-node/register src/bin/cli.ts test",
"test-local-with-esbuild": "node -r esbuild-register src/bin/cli.ts test",
"test-tsc": "npm run clean && npm run tsc && node dist/bin/cli.js && node dist/bin/cli.js test --base test/fixtures/example-ts && node dist/bin/cli.js dev --base test/fixtures/example-ts",
"cov": "c8 -r lcov -r text-summary -x 'test/**' npm run test-local -- --timeout 120000",
"ci": "npm run lint && npm run test-local && npm run test-tsc",
"prepublishOnly": "npm run clean && npm run tsc",
"tsc": "tsc",
"clean": "rm -rf dist"
},
"engines": {
"node": ">= 16.19.0"
}
}