forked from alexkirsz/dispatch-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 884 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
{
"name": "dispatch-proxy",
"description": "A SOCKS5/HTTP proxy that balances traffic between multiple internet connections.",
"author": "Alexandre Kirszenberg <a.kirszenberg@gmail.com>",
"version": "0.1.4",
"license": "MIT",
"keywords": [
"dispatch",
"proxy",
"socks",
"socks5",
"http",
"load",
"balancer"
],
"repository": {
"type": "git",
"url": "git@github.com:morhaus/dispatch-proxy.git"
},
"bin": {
"dispatch": "./bin/dispatch.js"
},
"scripts": {
"prepublish": "grunt"
},
"engines": {
"node": ">=0.10.0"
},
"engineStrict": true,
"dependencies": {
"commander": "2.0.0",
"socks-handler": "0.2.1",
"tmpl-log": "0.0.3"
},
"devDependencies": {
"grunt": "*",
"grunt-cli": "*",
"grunt-contrib-watch": "*",
"grunt-contrib-coffee": "*",
"grunt-contrib-clean": "*"
}
}