-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 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
{
"name": "wedevtools-cli",
"description": "微信开发者工具的命令行调用。",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git@github.com:fjc0k/wedevtools-cli.git"
},
"bugs": {
"url": "https://github.com/fjc0k/wedevtools-cli/issues"
},
"keywords": [
"wechat",
"devtools",
"cli"
],
"files": [
"lib"
],
"bin": {
"wedevtools": "lib/cli.js"
},
"author": {
"name": "Jay Fong",
"email": "fjc0kb@gmail.com",
"url": "https://github.com/fjc0k"
},
"eslintConfig": {
"root": true,
"extends": "io"
},
"eslintIgnore": [
"lib"
],
"scripts": {
"build": "tsc",
"release": "standard-version -a && git push --follow-tags origin master && yarn build && npm publish"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.12.9",
"@types/winreg": "^1.2.30",
"eslint": "^5.9.0",
"eslint-config-io": "^0.5.0",
"standard-version": "^4.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"change-case": "^3.0.2",
"commander": "^2.19.0",
"consola": "^2.5.8",
"fs-extra": "^7.0.1",
"tmp-promise": "^1.0.5",
"vtils": "^0.85.0",
"winreg": "^1.2.4"
}
}