This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
forked from martindale/kad
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
59
60
61
62
63
64
65
66
{
"name": "kad",
"version": "2.4.1",
"description": "extensible implementation of the kademlia dht",
"main": "index.js",
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc",
"example": "example"
},
"scripts": {
"test": "npm run test-suite && npm run linter",
"test-suite": "mocha test/** --recursive",
"coverage": "istanbul cover _mocha -- --recursive",
"linter": "eslint index.js lib test",
"jsdoc": "mkdir -p ../kadtools.github.io && jsdoc index.js lib -r -R README.md -u doc -c .jsdoc.json --verbose -d ../kadtools.github.io"
},
"keywords": [
"dht",
"kademlia",
"p2p"
],
"repository": {
"type": "git",
"url": "https://github.com/kadtools/kad.git"
},
"author": "Gordon Hall <[email protected]>",
"contributors": [
{
"name": "omphalos",
"url": "https://github.com/omphalos"
},
{
"name": "Alexander Leitner",
"url": "https://github.com/aleitner"
}
],
"license": "AGPL-3.0",
"engines": {
"node": ">=6.9.1"
},
"dependencies": {
"async": "^2.1.4",
"bunyan": "^1.8.5",
"concat-stream": "^1.6.0",
"jsonrpc-lite": "^1.2.3",
"merge": "^1.2.0",
"metapipe": "^2.0.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"eslint": "^3.14.0",
"ink-docstrap": "github:bookchin/docstrap",
"istanbul": "^0.3.13",
"jsdoc": "^3.4.0",
"levelup": "^1.3.5",
"memdown": "^1.2.4",
"mocha": "^2.2.4",
"pem": "^1.9.4",
"proxyquire": "^1.7.3",
"sinon": "^1.14.1"
}
}