-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "th-run-cli",
"version": "0.1.5-alpha",
"description": "脚手架项目",
"main": "./dist/main.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "eslint --ext .ts ./ --fix && rollup -c",
"lint": "eslint --ext .ts ./ --fix",
"lint-staged": "lint-staged"
},
"bin": {
"th-run-cli": "./dist/main.umd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomas-void0/th-run-cli"
},
"keywords": [
"th-run",
"th-run-cli"
],
"author": "thomas-void0",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomas-void0/th-run-cli/issues"
},
"homepage": "https://github.com/thomas-void0/th-run-cli#readme",
"dependencies": {
"commander": "^8.3.0",
"download-git-repo": "^3.0.2",
"glob": "^7.2.0",
"inquirer": "^8.2.0",
"ora": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"commander": "^8.3.0",
"download-git-repo": "^3.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"glob": "^7.2.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.1.7",
"rollup": "^2.63.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}