forked from ethereumjs/ethereumjs-devp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.78 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ethereumjs-devp2p",
"version": "2.5.1",
"description": "A JavaScript implementation of ÐΞVp2p",
"keywords": [
"ethereum",
"p2p",
"networking",
"dpt",
"rlpx",
"eth",
"eth62",
"eth63",
"les",
"les2"
],
"homepage": "https://github.com/ethereumjs/ethereumjs-devp2p",
"bugs": {
"url": "https://github.com/ethereumjs/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/**/*.js",
"src/**/*.d.ts",
"src/**/*.map"
],
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-devp2p.git"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"build": "ethereumjs-config-build",
"prepublishOnly": "npm run test && npm run build",
"coverage": "ethereumjs-config-coverage",
"coveralls": "ethereumjs-config-coveralls",
"docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tslint": "ethereumjs-config-tslint",
"tslint:fix": "ethereumjs-config-tslint-fix",
"tsc": "ethereumjs-config-tsc",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "ts-node node_modules/tape/bin/tape ./test/index.ts"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"bl": "^1.1.2",
"debug": "^2.2.0",
"ethereumjs-tx": "^1.3.7",
"inherits": "^2.0.1",
"ip": "^1.1.3",
"k-bucket": "^3.2.1",
"keccak": "^1.0.0",
"lru-cache": "^5.1.1",
"ms": "^0.7.1",
"rlp-encoding": "^3.0.0",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.1.0"
},
"devDependencies": {
"@ethereumjs/config-nyc": "^1.1.1",
"@ethereumjs/config-prettier": "^1.1.1",
"@ethereumjs/config-tsc": "^1.1.1",
"@ethereumjs/config-tslint": "^1.1.1",
"@types/async": "^2.4.1",
"@types/bl": "^2.1.0",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.4",
"@types/ethereumjs-tx": "^1.0.1",
"@types/ip": "^1.1.0",
"@types/lru-cache": "^5.1.0",
"@types/ms": "^0.7.30",
"@types/secp256k1": "3.5.0",
"@types/tape": "^4.2.33",
"async": "^2.6.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.0",
"ethereum-common": "~0.2.0",
"ethereumjs-block": "^1.3.0",
"nyc": "^11.4.1",
"prettier": "^1.17.0",
"standard": "*",
"tape": "^4.5.1",
"ts-node": "^8.1.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.2.0",
"typescript": "^3.4.5",
"typestrict": "^1.0.2"
}
}