forked from eggjs/egg-ts-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.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
{
"name": "egg-ts-helper",
"version": "2.1.0",
"description": "egg typescript helper",
"bin": {
"ets": "dist/bin.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"register.js"
],
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-ts-helper.git"
},
"scripts": {
"clean": "tsc -b --clean",
"tsc": "tsc -d",
"tsc:w": "tsc -d -w",
"lint": "eslint . --ext .ts",
"check": "npm run tsc && npm run lint",
"test": "npm run check && npm run test-local",
"test-local": "egg-bin test --ts",
"prepublishOnly": "del dist && npm run tsc",
"cov": "egg-bin cov --ts",
"ci": "npm run check && npm run cov && npm run tsc"
},
"keywords": [
"egg",
"typescript"
],
"author": "wanghx",
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.0.0",
"commander": "^2.15.1",
"dot-prop": "^4.2.0",
"enquirer": "^2.3.0",
"globby": "^11.0.0",
"json5": "^2.2.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"yn": "^3.0.0"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@types/commander": "^2.12.2",
"@types/del": "^3.0.0",
"@types/globby": "^6.1.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.4.5",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"egg": "^3.5.0",
"egg-bin": "^6.4.1",
"egg-mock": "^5.2.1",
"egg-sequelize": "^4.3.1",
"eslint": "^8.28.0",
"eslint-config-egg": "^12.1.0",
"extend2": "^1.0.0",
"runscript": "^1.3.0"
},
"engines": {
"node": ">= 14.21.3"
}
}