-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "useful-scripts",
"version": "1.0.11",
"description": "用于打包部署useful-cli创建的前端项目",
"main": "bld/src/index.js",
"bin": {
"useful-scripts": "./bld/src/index.js"
},
"scripts": {
"compile": "rm -rf bld && ttsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run compile && ./scripts/tag_and_deploy",
"deployOnly": "npm run compile && npm adduser && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yucheng1207/useful-script.git"
},
"keywords": [
"useful-cli",
"build",
"deploy"
],
"author": "yucheng1207",
"license": "MIT",
"bugs": {
"url": "https://github.com/yucheng1207/useful-script/issues"
},
"homepage": "https://github.com/yucheng1207/useful-script#readme",
"devDependencies": {
"@types/inquirer": "^7.3.3",
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.2.5",
"prettier": "^2.3.2",
"ttypescript": "^1.5.12",
"typescript": "^4.3.5",
"typescript-transform-paths": "^2.2.4",
"webpack": "^4.43.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.1.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"minimist": "^1.2.5",
"path": "^0.12.7",
"url": "^0.11.0"
}
}