forked from ethereumjs/node-devp2p
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "devp2p",
"version": "0.0.5",
"description": "A javascript libary implementing RPLx the ethereum p2p protocol",
"main": "index.js",
"scripts": {
"test": " tape ./test/*.js",
"coverage": "istanbul cover tape ./test/*.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"build:docs": "documentation --github -f md ./index.js > ./docs/index.md"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/node-devp2p.git"
},
"keywords": [
"ethereum",
"p2p",
"networking"
],
"author": "mjbecze",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/node-devp2p/issues"
},
"homepage": "https://github.com/ethereumjs/node-devp2p",
"dependencies": {
"async": "^1.4.2",
"bigi": "^1.4.0",
"buffer-xor": "^1.0.3",
"devp2p-dpt": "^2.0.0",
"ecurve": "^1.0.1",
"ethereumjs-util": "^4.5.0",
"keccakjs": "^0.1.0",
"rlp": "^2.0.0",
"secp256k1": "^3.2.0",
"server-destroy": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"coveralls": "^2.11.6",
"documentation": "^3.0.4",
"istanbul": "^0.4.1",
"levelup": "^1.2.1",
"memdown": "^1.0.0",
"mocha": "^2.1.0",
"standard": "^5.4.1",
"tape": "^4.4.0"
}
}