-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "k-bucket",
"version": "5.1.0",
"description": "Kademlia DHT K-bucket implementation as a binary tree",
"keywords": [
"k-bucket",
"kademlia",
"dht"
],
"bugs": {
"url": "https://github.com/tristanls/k-bucket/issues"
},
"license": "MIT",
"contributors": [
"Tristan Slominski <[email protected]>",
"Mike de Boer <[email protected]>",
"Conrad Pankoff <[email protected]>",
"Feross Aboukhadijeh <[email protected]>",
"Nathan Hernandez <[email protected]>",
"Fabien O'Carroll <[email protected]>",
"Kirill Fomichev <[email protected]>",
"Robert Kowalski <[email protected]>",
"Nazar Mokrynskyi <[email protected]>",
"Jimmy Wärting <[email protected]>",
"Alex Potsides <[email protected]>"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "[email protected]:tristanls/k-bucket.git"
},
"scripts": {
"benchmark:add": "node benchmarks/add.js",
"benchmark:closest": "node benchmarks/closest.js",
"benchmark:distance": "node benchmarks/distance.js",
"coverage": "nyc tape test/*.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"randombytes": "^2.1.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.1.1"
}
}