-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "udp-abstract-dht",
"version": "0.0.2",
"description": "A Kademlia-based DHT implementation with abstract communication interfaces.",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "node test.js | node node_modules/faucet/bin/cmd",
"docs": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walasek/node-abstract-dht.git"
},
"keywords": [
"nodejs",
"dht",
"kademlia"
],
"author": "Karol Walasek <coreconviction@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walasek/node-abstract-dht/issues"
},
"homepage": "https://github.com/walasek/node-abstract-dht#readme",
"devDependencies": {
"docdash": "^1.2.0",
"faucet": "0.0.1",
"glob": "^7.1.6",
"jsdoc": "^3.6.6",
"nyc": "^15.1.0",
"optimist": "^0.6.1",
"zora": "^4.0.0"
},
"dependencies": {
"debug": "^4.2.0"
}
}