forked from TooTallNate/proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 736 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 736 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
37
{
"name": "proxy",
"version": "0.2.3",
"description": "An HTTP proxy written with Node.js (think Squid)",
"main": "proxy.js",
"scripts": {
"test": "mocha --reporter spec"
},
"bin": "./bin/proxy",
"keywords": [
"http",
"https",
"proxy",
"connect",
"tunnel",
"squid",
"privoxy",
"apache",
"mod_proxy",
"via",
"x-forwarded-for"
],
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"repository": {
"type": "git",
"url": "git://github.com/TooTallNate/proxy.git"
},
"license": "MIT",
"dependencies": {
"basic-auth-parser": "0.0.2",
"commander": "2.2.0",
"debug": "0.8.0"
},
"devDependencies": {
"mocha": "1.18.2"
}
}