2014-03-26 08:17:54 +00:00
|
|
|
{
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2014-04-19 08:33:28 +00:00
|
|
|
"version": "0.4.1",
|
2014-03-26 08:17:54 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Feross Aboukhadijeh",
|
|
|
|
"email": "feross@feross.org",
|
|
|
|
"url": "http://feross.org/"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/feross/bittorrent-tracker/issues"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"bncode": "^0.5.2",
|
|
|
|
"compact2string": "^1.2.0",
|
|
|
|
"extend.js": "0.0.1",
|
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-03-27 07:17:49 +00:00
|
|
|
"querystring": "^0.2.0",
|
2014-04-19 06:05:21 +00:00
|
|
|
"run-parallel": "^0.3.0",
|
2014-03-27 07:17:49 +00:00
|
|
|
"string2compact": "^1.1.0"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-04-19 08:32:50 +00:00
|
|
|
"parse-torrent": "^0.9.0",
|
2014-03-27 07:17:49 +00:00
|
|
|
"portfinder": "^0.2.1",
|
2014-03-26 08:17:54 +00:00
|
|
|
"tape": "2.x"
|
|
|
|
},
|
2014-04-19 08:32:42 +00:00
|
|
|
"optionalDependencies": {
|
|
|
|
"bignum": "^0.6.2"
|
|
|
|
},
|
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
|
|
|
}
|