2014-03-26 08:17:54 +00:00
|
|
|
{
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2015-01-22 22:24:14 +00:00
|
|
|
"version": "2.12.0",
|
2014-03-26 08:17:54 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Feross Aboukhadijeh",
|
|
|
|
"email": "feross@feross.org",
|
|
|
|
"url": "http://feross.org/"
|
|
|
|
},
|
2014-06-07 22:11:21 +00:00
|
|
|
"browser": {
|
|
|
|
"./server.js": false
|
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/feross/bittorrent-tracker/issues"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2014-06-12 00:57:19 +00:00
|
|
|
"bencode": "^0.6.0",
|
2015-01-22 22:14:10 +00:00
|
|
|
"bn.js": "^1.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-12-22 10:15:58 +00:00
|
|
|
"extend.js": "0.0.2",
|
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",
|
2014-07-22 05:58:13 +00:00
|
|
|
"once": "^1.3.0",
|
2014-12-22 10:16:47 +00:00
|
|
|
"portfinder": "^0.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",
|
2014-05-19 01:34:56 +00:00
|
|
|
"string2compact": "^1.1.1"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-12-22 10:16:51 +00:00
|
|
|
"magnet-uri": "^4.0.0",
|
2015-01-22 22:14:15 +00:00
|
|
|
"parse-torrent": "^3.0.1",
|
2014-11-26 12:20:23 +00:00
|
|
|
"tape": "^3.0.3"
|
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": {
|
|
|
|
"test": "tape test/*.js"
|
|
|
|
}
|
2014-03-27 07:36:52 +00:00
|
|
|
}
|