forked from ethereumjs/ethereumjs-devp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ethereumjs-devp2p",
"version": "2.5.0",
"description": "A JavaScript implementation of ÐΞVp2p",
"keywords": [
"ethereum",
"p2p",
"networking",
"dpt",
"rlpx",
"eth",
"eth62",
"eth63",
"les",
"les2"
],
"homepage": "https://github.com/fanatid/ethereumjs-devp2p",
"bugs": {
"url": "https://github.com/fanatid/ethereumjs-devp2p/issues"
},
"license": "MIT",
"contributors": [
"Alex Beregszaszi <[email protected]>",
"Kirill Fomichev <[email protected]> (https://github.com/fanatid)",
"Martin Becze <[email protected]>",
"Holger Drewes <[email protected]>"
],
"files": [
"src",
"lib"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fanatid/ethereumjs-devp2p.git"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/lcov.info",
"coveralls": "npm run coverage && coveralls <.nyc_output/lcov.info",
"build": "babel src -d lib",
"integration": "tape -r babel-register test/integration/*.js",
"lint": "standard",
"prepublish": "npm run build",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "tape -r babel-register test/*.js"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"bl": "^1.1.2",
"debug": "^2.2.0",
"inherits": "^2.0.1",
"ip": "^1.1.3",
"k-bucket": "^3.2.1",
"keccak": "^1.0.0",
"lru-cache": "^4.0.1",
"ms": "^0.7.1",
"rlp-encoding": "^3.0.0",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.1.0"
},
"devDependencies": {
"async": "^2.6.0",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.14.0",
"chalk": "^1.1.3",
"coveralls": "^3.0.0",
"ethereum-common": "~0.2.0",
"ethereumjs-block": "^1.3.0",
"ethereumjs-tx": "^1.1.1",
"nyc": "^11.4.1",
"standard": "*",
"tape": "^4.5.1"
},
"standard": {
"parser": "babel-eslint"
}
}