tor-router/package.json

42 lines
1.3 KiB
JSON
Raw Normal View History

2015-07-06 14:21:09 +00:00
{
"name": "tor-router",
"version": "4.0.0",
2017-01-31 15:56:42 +00:00
"main": "src/index.js",
"repository": "git@github.com:znetstar/tor-router.git",
"author": "Zachary Boyd <zachary@zacharyboyd.nyc>",
2017-03-26 03:55:07 +00:00
"license": "Apache-2.0",
2018-09-11 17:39:49 +00:00
"description": "A SOCKS, HTTP and DNS proxy for distributing traffic across multiple instances of Tor",
2017-01-31 23:16:12 +00:00
"bin": {
"tor-router": "bin/tor-router"
},
2017-01-31 15:56:42 +00:00
"scripts": {
2017-12-07 23:50:37 +00:00
"start": "bin/tor-router -s -d -j 1",
"test": "mocha --exit test",
"debug": "node --inspect-brk bin/tor-router"
2017-01-31 15:56:42 +00:00
},
"devDependencies": {
"chai": "^4.1.2",
2018-08-10 05:03:15 +00:00
"mocha": "^5.2.0",
"request": "^2.79.0",
"request-promise": "^4.2.2"
2017-01-31 15:56:42 +00:00
},
2015-07-06 14:21:09 +00:00
"dependencies": {
"bluebird": "^3.5.2",
"del": "^3.0.0",
"eventemitter3": "^3.1.0",
2017-01-31 15:56:42 +00:00
"get-port": "^2.1.0",
2018-05-10 05:42:30 +00:00
"granax": "^3.1.3",
"jrpc2": "git+https://github.com/znetstar/jrpc2.git#f1521bd3f2fa73d716e74bf8f746d08d5e03e7d7",
"js-weighted-list": "^0.1.1",
2017-01-31 15:56:42 +00:00
"lodash": "^4.17.4",
"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#431e541390314adbbe765650d8d810ec1df38d8a",
2015-12-29 05:12:46 +00:00
"temp": "^0.8.3",
"winston": "^3.0.0-rc5",
"yargs": "^11.0.0"
2017-01-31 15:56:42 +00:00
}
2015-07-06 14:21:09 +00:00
}