-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.28 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.28 KB
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
{
"name": "mwts",
"version": "2.0.4",
"description": "MidwayJS TypeScript Style",
"repository": "midwayjs/mwts",
"main": "dist/src/index.js",
"bin": {
"mwts": "dist/src/cli.js"
},
"files": [
"CHANGELOG.md",
"dist/src",
"dist/template",
"eslint.config.js",
"eslint.ignores.js",
".prettierrc.json",
"LICENSE",
"tsconfig-midway.json",
"tsconfig.json"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist/",
"codecov": "c8 report --reporter=json && codecov -f coverage/*.json",
"postbuild": "ncp template dist/template",
"lint": "eslint '**/*.ts'",
"prepare": "npm run build",
"test": "c8 mocha dist/test/test-*.js",
"system-test": "c8 mocha dist/test/kitchen.js",
"pretest": "npm run build",
"presystem-test": "npm run build",
"fix": "eslint --fix '**/*.ts'"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"chalk": "^4.1.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"execa": "^5.0.0",
"globals": "^16.4.0",
"inquirer": "^7.3.3",
"json5": "^2.1.3",
"meow": "^9.0.0",
"ncp": "^2.0.0",
"prettier": "^3.6.2",
"rimraf": "^3.0.2",
"typescript-eslint": "^8.56.0",
"update-notifier": "^6.0.2",
"write-file-atomic": "^6.0.0"
},
"devDependencies": {
"@npm/types": "^2.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^9.0.0",
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^8.0.0",
"@types/json5": "2.2.0",
"@types/mocha": "^10.0.0",
"@types/ncp": "^2.0.4",
"@types/node": "^22.7.5",
"@types/rimraf": "^3.0.0",
"@types/sinon": "^21.0.0",
"@types/tmp": "^0.2.0",
"@types/update-notifier": "^6.0.8",
"@types/write-file-atomic": "^4.0.0",
"c8": "^10.1.2",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.0.0",
"inline-fixtures": "^1.1.0",
"js-green-licenses": "^4.0.0",
"mocha": "^11.0.0",
"sinon": "^21.0.0",
"tmp": "0.2.4",
"typescript": "^5.6.3"
},
"peerDependencies": {
"typescript": ">=5"
}
}