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