forked from TooTallNate/proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
54
55
56
57
58
59
60
61
{
"name": "proxy",
"version": "1.0.1",
"description": "An HTTP proxy written with Node.js (think Squid)",
"main": "proxy.js",
"scripts": {
"test": "mocha --reporter spec",
"start": "node ./bin/proxy.js"
},
"bin": "./bin/proxy.js",
"keywords": [
"http",
"https",
"proxy",
"connect",
"tunnel",
"squid",
"privoxy",
"apache",
"mod_proxy",
"via",
"x-forwarded-for"
],
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)",
"repository": {
"type": "git",
"url": "git://github.com/TooTallNate/proxy.git"
},
"license": "MIT",
"dependencies": {
"args": "5.0.1",
"basic-auth-parser": "0.0.2",
"debug": "^4.1.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.5.3",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.1.0",
"cpy-cli": "^2.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"mocha": "6",
"pkg": "^4.3.5",
"rimraf": "^3.0.0",
"typescript": "^3.6.4"
},
"pkg": {
"targets": [
"node8-alpine-x64",
"node8-linux-x64",
"node8-macos-x64",
"node8-win-x64"
]
}
}