forked from tintfoundation/bitboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 896 Bytes
/
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
{
"name": "bitboot",
"version": "0.0.3",
"description": "Bootstrap a distributed p2p network",
"main": "index.js",
"dependencies": {
"bittorrent-dht": "^7.2.2",
"k-bucket": "^3.0.1",
"debug": "^2.2.0",
"bitwise": "^0.2.0"
},
"bin": {
"bitboot": "./bin/cmd.js"
},
"devDependencies": {
"standard": "^7.0.0",
"tape": "^4.4.0"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tintfoundation/bitboot.git"
},
"keywords": [
"dht",
"distributed hash table",
"protocol",
"peer",
"p2p",
"peer-to-peer",
"bootstrap",
"torrent",
"bittorrent"
],
"author": "Tint Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/tintfoundation/bitboot/issues"
},
"homepage": "https://github.com/tintfoundation/bitboot"
}