-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 935 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 935 Bytes
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
{
"name": "proxy-setup-cli",
"version": "1.0.2",
"description": "A command line interface to control the proxy settings of various development tools.",
"main": "index.js",
"scripts": {
"start": "node out/index.js",
"prestart": "npm run build",
"build": "tsc",
"prepackage": "npm run build",
"package": "pkg --targets=node8-macos,node8-linux,node8-win out/index.js -o ./package/proxy-setup-cli",
"lint": "tslint ./src/**/*.ts -t stylish"
},
"keywords": [
"Proxy",
"Setup",
"Environment",
"CLI"
],
"author": "Philipp Kief",
"license": "MIT",
"dependencies": {
"fuzzy": "^0.1.3",
"inquirer": "^5.2.0",
"inquirer-autocomplete-prompt": "^0.12.2",
"lodash.set": "^4.3.2",
"properties": "^1.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/inquirer": "0.0.41",
"pkg": "^4.3.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
}
}