-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "os-proxy-config",
"version": "1.1.1",
"description": "Access the operating system proxy configuration from Node.js, for all platforms",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p .",
"pretest": "npm run build",
"test": "cross-env TS_NODE_FILES=true mocha -r ts-node/register 'test/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/os-proxy-config.git"
},
"keywords": [
"mac",
"osx",
"windows",
"linux",
"system",
"proxy",
"proxies",
"pac",
"http",
"socks",
"config",
"configuration"
],
"author": "Tim Perry <tim@httptoolkit.tech>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/os-proxy-config/issues"
},
"homepage": "https://github.com/httptoolkit/os-proxy-config#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.9.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"mocha": "^8.4.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"mac-system-proxy": "^1.0.0",
"windows-system-proxy": "^1.0.0"
}
}