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