bittorrent-tracker/package.json

57 lines
1.2 KiB
JSON
Raw Normal View History

2014-03-26 01:17:54 -07:00
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
2015-02-19 12:56:47 -08:00
"version": "3.1.2",
2014-03-26 01:17:54 -07:00
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "http://feross.org/"
},
2014-06-07 15:11:21 -07:00
"browser": {
"./server.js": false
},
2014-03-26 01:17:54 -07:00
"bugs": {
"url": "https://github.com/feross/bittorrent-tracker/issues"
},
"dependencies": {
2014-06-11 17:57:19 -07:00
"bencode": "^0.6.0",
2015-01-22 14:14:10 -08:00
"bn.js": "^1.0.0",
2014-06-06 01:15:36 -07:00
"buffer-equal": "0.0.1",
2014-03-26 01:17:54 -07:00
"compact2string": "^1.2.0",
2014-09-16 19:58:05 -07:00
"debug": "^2.0.0",
"hat": "0.0.3",
2014-03-26 01:17:54 -07:00
"inherits": "^2.0.1",
2014-05-23 19:44:57 -07:00
"ip": "^0.3.0",
"once": "^1.3.0",
2014-12-10 16:47:41 +01:00
"run-series": "^1.0.2",
"simple-get": "^1.3.0",
2014-05-18 18:34:56 -07:00
"string2compact": "^1.1.1"
2014-03-26 01:17:54 -07:00
},
"devDependencies": {
2014-12-22 02:16:51 -08:00
"magnet-uri": "^4.0.0",
2015-01-22 14:14:15 -08:00
"parse-torrent": "^3.0.1",
2015-01-28 19:26:55 -08:00
"standard": "^2.0.0",
2014-11-26 20:20:23 +08:00
"tape": "^3.0.3"
2014-03-26 01:17:54 -07: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": "standard && tape test/*.js"
2014-03-26 01:17:54 -07:00
}
2014-03-27 00:36:52 -07:00
}