-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "windows-env-cli",
"version": "1.0.3",
"description": "windows环境变量配置工具",
"main": "out/main.js",
"bin": {
"env-mgr": "./lib/main.js",
"env-update": "./env-update.cmd"
},
"scripts": {
"dev": "tsc --watch",
"release": "tsc && minify lib -d lib --mergeVars --undefinedToVoid --infinity --mangle --simplify --memberExpressions --typeConstructors",
"test": "jest",
"run": "node lib/main",
"help": "node lib/main --help",
"list-all": "node lib/main --list",
"list-path": "node lib/main -l Path",
"list-path-ext": "node lib/main -l PATHEXT",
"list-windir": "node lib/main -l windir",
"edit-path-add": "node lib/main -e Path push 'D:\\DEV\\Github\\android'"
},
"keywords": [
"path",
"windows",
"环境变量"
],
"author": "DeepKolos <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"babel-minify": "^0.5.0",
"jest": "^24.8.0",
"jest-mock-console": "^1.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}