forked from webtorrent/bittorrent-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "bittorrent-protocol",
"description": "Simple, robust, BitTorrent peer wire protocol implementation",
"version": "2.4.0",
"author": {
"name": "WebTorrent, LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-protocol/issues"
},
"dependencies": {
"bencode": "^2.0.0",
"bitfield": "^2.0.0",
"buffer-xor": "^2.0.2",
"debug": "^3.1.0",
"inherits": "^2.0.1",
"randombytes": "^2.0.5",
"rc4": "^0.1.5",
"readable-stream": "^2.3.2",
"safe-buffer": "^5.1.1",
"simple-sha1": "^2.1.0",
"speedometer": "^1.0.0",
"unordered-array-remove": "^1.0.2",
"xtend": "^4.0.0"
},
"devDependencies": {
"airtap": "0.0.4",
"standard": "*",
"tape": "^4.0.0"
},
"keywords": [
"torrent",
"bittorrent",
"protocol",
"stream",
"peer",
"wire",
"p2p",
"peer-to-peer"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/bittorrent-protocol.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "tape test/*.js"
},
"testling": {
"files": "test/*.js"
}
}