2014-03-26 01:17:54 -07:00
|
|
|
{
|
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2015-12-17 00:42:22 +13:00
|
|
|
"version": "6.3.4",
|
2014-03-26 01:17:54 -07:00
|
|
|
"author": {
|
|
|
|
|
"name": "Feross Aboukhadijeh",
|
|
|
|
|
"email": "feross@feross.org",
|
|
|
|
|
"url": "http://feross.org/"
|
|
|
|
|
},
|
2015-03-19 21:52:58 -07:00
|
|
|
"bin": {
|
|
|
|
|
"bittorrent-tracker": "./bin/cmd.js"
|
|
|
|
|
},
|
2015-03-24 01:52:21 -07:00
|
|
|
"browser": {
|
2015-10-23 17:31:34 -07:00
|
|
|
"./lib/common-node.js": false,
|
|
|
|
|
"./lib/client/http-tracker.js": false,
|
|
|
|
|
"./lib/client/udp-tracker.js": false,
|
|
|
|
|
"./server.js": false
|
2015-03-24 01:52:21 -07:00
|
|
|
},
|
2014-03-26 01:17:54 -07:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/feross/bittorrent-tracker/issues"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2015-02-28 17:53:23 -05:00
|
|
|
"bencode": "^0.7.0",
|
2015-11-30 22:58:33 -08:00
|
|
|
"bn.js": "^4.4.0",
|
2014-06-06 01:15:36 -07:00
|
|
|
"buffer-equal": "0.0.1",
|
2014-03-26 01:17:54 -07:00
|
|
|
"compact2string": "^1.2.0",
|
2014-09-16 19:58:05 -07:00
|
|
|
"debug": "^2.0.0",
|
2014-03-27 00:17:49 -07:00
|
|
|
"hat": "0.0.3",
|
2014-03-26 01:17:54 -07:00
|
|
|
"inherits": "^2.0.1",
|
2015-09-18 15:49:35 -07:00
|
|
|
"ip": "^1.0.1",
|
2015-03-19 21:47:47 -07:00
|
|
|
"minimist": "^1.1.1",
|
2014-07-21 22:58:13 -07:00
|
|
|
"once": "^1.3.0",
|
2015-05-19 04:32:09 -07:00
|
|
|
"random-iterate": "^1.0.1",
|
2015-07-16 18:33:50 -07:00
|
|
|
"run-parallel": "^1.1.2",
|
2014-12-10 16:47:41 +01:00
|
|
|
"run-series": "^1.0.2",
|
2015-01-22 14:23:53 -08:00
|
|
|
"simple-get": "^1.3.0",
|
2015-04-20 16:38:59 -07:00
|
|
|
"simple-peer": "^5.0.0",
|
2015-04-11 11:58:21 +12:00
|
|
|
"simple-websocket": "^2.0.0",
|
2015-03-24 01:52:21 -07:00
|
|
|
"string2compact": "^1.1.1",
|
2015-07-29 01:47:09 -07:00
|
|
|
"uniq": "^1.0.1",
|
2015-09-18 15:54:00 -07:00
|
|
|
"ws": "^0.8.0",
|
2015-03-27 17:28:55 +13:00
|
|
|
"xtend": "^4.0.0"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2015-05-27 17:50:05 -07:00
|
|
|
"magnet-uri": "^5.0.0",
|
2015-05-27 17:50:12 -07:00
|
|
|
"parse-torrent": "^5.0.0",
|
2015-09-18 15:45:42 -07:00
|
|
|
"standard": "^5.3.0",
|
2015-04-10 03:39:03 +12:00
|
|
|
"tape": "^4.0.0"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"torrent",
|
|
|
|
|
"bittorrent",
|
|
|
|
|
"tracker",
|
|
|
|
|
"stream",
|
|
|
|
|
"peer",
|
|
|
|
|
"wire",
|
|
|
|
|
"p2p",
|
|
|
|
|
"peer-to-peer"
|
|
|
|
|
],
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git://github.com/feross/bittorrent-tracker.git"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2015-01-26 18:16:01 -08:00
|
|
|
"test": "standard && tape test/*.js"
|
2014-03-26 01:17:54 -07:00
|
|
|
}
|
2014-03-27 00:36:52 -07:00
|
|
|
}
|