forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.85 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
102
103
{
"name": "@ethereumjs/devp2p",
"version": "4.0.0",
"description": "A JavaScript implementation of ÐΞVp2p",
"license": "MIT",
"keywords": [
"ethereum",
"p2p",
"networking",
"dpt",
"rlpx",
"eth",
"eth64",
"eth65",
"les",
"les2"
],
"engines": {
"node": ">=10.0"
},
"files": [
"dist",
"dist.browser"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist.browser/index.js",
"scripts": {
"build": "ethereumjs-config-ts-build",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"clean": "rm -Rf ./dist && rm -Rf ./dist.browser",
"coverage": "ethereumjs-config-coverage",
"docs:build": "typedoc",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tsc": "ethereumjs-config-tsc",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "tape -r ts-node/register ./test/index.ts"
},
"dependencies": {
"@ethereumjs/common": "^2.2.0",
"@types/bl": "^2.1.0",
"@types/k-bucket": "^5.0.0",
"@types/lru-cache": "^5.1.0",
"base64url": "^3.0.1",
"bl": "^1.1.2",
"debug": "^2.2.0",
"ethereumjs-util": "^7.0.10",
"hi-base32": "^0.5.0",
"inherits": "^2.0.1",
"ip": "^1.1.3",
"k-bucket": "^5.0.0",
"keccak": "^3.0.1",
"lru-cache": "^5.1.1",
"ms": "^0.7.1",
"multiaddr": "^8.1.2",
"rlp": "^2.2.4",
"scanf": "^1.1.2",
"secp256k1": "^4.0.2"
},
"devDependencies": {
"@ethereumjs/block": "^3.2.1",
"@ethereumjs/config-coverage": "^2.0.0",
"@ethereumjs/config-typescript": "^2.0.0",
"@ethereumjs/eslint-config-defaults": "^2.0.0",
"@ethereumjs/tx": "^3.1.4",
"@types/async": "^2.4.1",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.4",
"@types/ip": "^1.1.0",
"@types/keccak": "^3.0.1",
"@types/ms": "^0.7.30",
"@types/secp256k1": "^4.0.1",
"@types/tape": "^4.13.0",
"async": "^2.6.0",
"chalk": "^2.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"nyc": "^14.0.0",
"prettier": "^2.0.5",
"tape": "^4.10.1",
"ts-node": "^8.8.2",
"typedoc": "^0.20.34",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/devp2p#readme",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+devp2p%22"
},
"contributors": [
"Alex Beregszaszi <[email protected]>",
"Kirill Fomichev <[email protected]> (https://github.com/fanatid)",
"Martin Becze <[email protected]>",
"Holger Drewes <[email protected]>"
]
}