bittorrent-tracker/package.json

74 lines
1.7 KiB
JSON
Raw Normal View History

2014-03-26 08:17:54 +00:00
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
2017-01-23 23:00:31 +00:00
"version": "8.2.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"
},
"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
},
2014-03-26 08:17:54 +00:00
"bugs": {
"url": "https://github.com/feross/bittorrent-tracker/issues"
},
"dependencies": {
2017-01-16 22:36:01 +00:00
"bencode": "^0.11.0",
2016-06-07 12:34:38 +00:00
"bittorrent-peerid": "^1.0.2",
2015-12-01 06:58:33 +00:00
"bn.js": "^4.4.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-26 08:17:54 +00:00
"inherits": "^2.0.1",
2015-09-18 22:49:35 +00:00
"ip": "^1.0.1",
"lru": "^3.0.0",
2015-03-20 04:47:47 +00:00
"minimist": "^1.1.1",
"once": "^1.3.0",
2015-05-19 11:32:09 +00:00
"random-iterate": "^1.0.1",
2016-08-21 02:37:36 +00:00
"randombytes": "^2.0.3",
"run-parallel": "^1.1.2",
2014-12-10 15:47:41 +00:00
"run-series": "^1.0.2",
"safe-buffer": "^5.0.0",
"simple-get": "^2.0.0",
"simple-peer": "^6.0.0",
"simple-websocket": "^4.0.0",
"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": {
2017-01-20 23:20:25 +00:00
"electron-webrtc": "^0.3.0",
2016-03-16 19:22:33 +00:00
"magnet-uri": "^5.1.3",
2016-08-26 01:56:49 +00:00
"standard": "*",
2016-03-16 19:22:33 +00:00
"tape": "^4.0.0",
"webtorrent-fixtures": "^1.3.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": {
"update-authors": "./bin/update-authors.sh",
"test": "standard && tape test/*.js"
2014-03-26 08:17:54 +00:00
}
2014-03-27 07:36:52 +00:00
}