forked from znetstar/tor-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "tor-router",
"version": "4.0.12",
"main": "src/index.js",
"repository": "[email protected]:znetstar/tor-router.git",
"author": "Zachary Boyd <[email protected]>",
"license": "Apache-2.0",
"description": "A SOCKS, HTTP and DNS proxy for distributing traffic across multiple instances of Tor",
"bin": {
"tor-router": "bin/tor-router"
},
"keywords": [
"tor"
],
"scripts": {
"start": "bin/tor-router -s 9000 -d -j 1",
"test": "mocha -u tdd --exit test/index.js",
"debug": "export DEBUG=true && node --inspect-brk=0.0.0.0:65101 bin/tor-router -j 100 -s 9000",
"docs": "grunt docs"
},
"devDependencies": {
"chai": "^4.1.2",
"docdash": "^1.0.0",
"grunt": "^1.0.3",
"grunt-jsdoc": "^2.3.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"requestretry": "^2.0.2",
"socks-proxy-agent": "^4.0.1"
},
"dependencies": {
"arrify": "^2.0.1",
"async-mutex": "^0.1.4",
"bluebird": "^3.5.2",
"del": "^3.0.0",
"eventemitter3": "^3.1.0",
"get-port": "^2.1.0",
"granax": "^3.1.4",
"js-weighted-list": "^0.1.1",
"lodash": "^4.17.15",
"multi-rpc": "^1.5.5",
"nanoid": "^1.2.3",
"native-dns": "git+https://github.com/znetstar/node-dns.git#336f1d3027b2a3da719b5cd65380219267901aeb",
"nconf": "^0.10.0",
"shelljs": "^0.8.2",
"socksv5": "git+https://github.com/znetstar/socksv5.git#1480422215cf1464fa06f5aec4a3e7f2117e3403",
"temp": "^0.8.3",
"winston": "^3.0.0-rc5",
"yargs": "^11.0.0"
}
}