2014-03-26 08:17:54 +00:00
|
|
|
{
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2015-04-24 04:16:16 +00:00
|
|
|
"version": "3.4.5",
|
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": {
|
|
|
|
"./lib/common-node": false,
|
|
|
|
"./lib/http-tracker": false,
|
|
|
|
"./lib/udp-tracker": false,
|
2015-04-24 04:15:40 +00:00
|
|
|
"./server": 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-02-28 22:53:28 +00:00
|
|
|
"bn.js": "^2.0.0",
|
2014-06-06 08:15:36 +00:00
|
|
|
"buffer-equal": "0.0.1",
|
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",
|
2014-05-24 02:44:57 +00:00
|
|
|
"ip": "^0.3.0",
|
2015-03-20 04:47:47 +00:00
|
|
|
"minimist": "^1.1.1",
|
2014-07-22 05:58:13 +00:00
|
|
|
"once": "^1.3.0",
|
2014-12-10 15:47:41 +00:00
|
|
|
"run-series": "^1.0.2",
|
2015-01-22 22:23:53 +00:00
|
|
|
"simple-get": "^1.3.0",
|
2015-04-20 23:38:59 +00:00
|
|
|
"simple-peer": "^5.0.0",
|
2015-04-10 23:58:21 +00:00
|
|
|
"simple-websocket": "^2.0.0",
|
2015-03-24 08:52:21 +00:00
|
|
|
"string2compact": "^1.1.1",
|
2015-03-27 03:19:06 +00:00
|
|
|
"ws": "^0.7.1",
|
2015-03-27 04:28:55 +00:00
|
|
|
"xtend": "^4.0.0"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-12-22 10:16:51 +00:00
|
|
|
"magnet-uri": "^4.0.0",
|
2015-02-28 22:53:35 +00:00
|
|
|
"parse-torrent": "^4.0.0",
|
2015-03-20 04:50:29 +00:00
|
|
|
"standard": "^3.2.0",
|
2015-04-09 15:39:03 +00:00
|
|
|
"tape": "^4.0.0"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"homepage": "http://webtorrent.io",
|
|
|
|
"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-27 02:16:01 +00:00
|
|
|
"test": "standard && tape test/*.js"
|
2015-04-20 23:38:59 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"wrtc": "0.0.55"
|
2014-03-26 08:17:54 +00:00
|
|
|
}
|
2014-03-27 07:36:52 +00:00
|
|
|
}
|