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