forked from ethereumjs/node-devp2p-dpt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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": "devp2p-dpt",
"version": "2.0.0",
"description": "An implemention of ethereum's DHT",
"keywords": [
"ethereum"
],
"homepage": "https://github.com/ethereumjs/node-devp2p-dpt",
"bugs": {
"url": "https://github.com/ethereumjs/node-devp2p-dpt/issues"
},
"license": "MPL-2.0",
"author": "Martin Becze <[email protected]>",
"contributors": [
"Alex Beregszaszi <[email protected]>"
],
"files": [
"lib"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/node-devp2p-dpt.git"
},
"scripts": {
"coverage": "nyc tape test/*.js",
"integration": "tape test/integration/*.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"async": "^2.0.0-rc.4",
"debug": "^2.2.0",
"ethereumjs-util": "^4.5.0",
"inherits": "^2.0.1",
"ip": "^1.1.2",
"k-bucket": "^2.0.0",
"randombytes": "^2.0.3",
"rlp": "^2.0.0",
"secp256k1": "^3.1.0"
},
"devDependencies": {
"chalk": "^1.1.3",
"nyc": "^6.4.2",
"standard": "^7.0.1",
"tape": "^4.5.1"
}
}