forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.39 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@ethereumjs/client",
"version": "0.6.3",
"description": "EthereumJS client implementation",
"keywords": [
"ethereum",
"ethereumjs",
"client",
"blockchain",
"light sync",
"full sync"
],
"homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/client#readme",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+client%22"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"license": "MPL-2.0",
"author": "Vinay Pulim ([email protected])",
"main": "dist/lib/index.js",
"browser": "dist/bundle.js",
"types": "dist/lib/index.d.ts",
"bin": {
"ethereumjs": "dist/bin/cli.js"
},
"files": [
"dist"
],
"scripts": {
"binWorkaround": "test -f dist/bin/cli.js || echo 'install fails if bin script does not exist (https://github.com/npm/cli/issues/2632), creating placeholder file at \"dist/bin/cli.js\"' && mkdir -p 'dist/bin' && touch dist/bin/cli.js",
"build": "npm run build:common",
"build:browser": "../../config/cli/ts-build.sh browser && npm run bundle && rm -rf dist.browser",
"build:common": "../../config/cli/ts-build.sh",
"bundle": "webpack",
"clean": "../../config/cli/clean-package.sh",
"client:start": "ts-node bin/cli.ts",
"client:start:dev1": "npm run client:start -- --discDns=false --discV4=false --bootnodes",
"client:start:dev2": "npm run client:start -- --discDns=false --discV4=false --transports=rlpx --port=30304 --datadir=datadir-dev2",
"coverage": "c8 --all --reporter=lcov --reporter=text --reporter=text-lcov npm run test:unit",
"docs:build": "typedoc --options typedoc.js --tsconfig tsconfig.prod.json",
"preinstall": "npm run binWorkaround",
"lint": "../../config/cli/lint.sh",
"lint:diff": "../../config/cli/lint-diff.sh",
"lint:fix": "../../config/cli/lint-fix.sh",
"prepublishOnly": "../../config/cli/prepublish.sh",
"tape": "tape -r ts-node/register",
"test": "npm run test:unit && npm run test:integration",
"test:browser": "karma start karma.conf.js",
"test:cli": "npm run tape -- 'test/cli/*.spec.ts'",
"test:integration": "npm run tape -- 'test/integration/**/*.spec.ts'",
"test:unit": "npm run tape -- 'test/!(integration|cli)/**/*.spec.ts' 'test/*.spec.ts'",
"tsc": "../../config/cli/ts-compile.sh"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^4.1.1",
"@ethereumjs/block": "4.0.0",
"@ethereumjs/blockchain": "6.0.0",
"@ethereumjs/common": "3.0.0",
"@ethereumjs/devp2p": "5.0.0",
"@ethereumjs/ethash": "2.0.0",
"@ethereumjs/evm": "1.0.0",
"@ethereumjs/rlp": "4.0.0",
"@ethereumjs/statemanager": "1.0.0",
"@ethereumjs/trie": "5.0.0",
"@ethereumjs/tx": "4.0.0",
"@ethereumjs/util": "8.0.0",
"@ethereumjs/vm": "6.0.0",
"abstract-level": "^1.0.3",
"body-parser": "^1.19.2",
"chalk": "^4.1.2",
"connect": "^3.7.0",
"cors": "^2.8.5",
"debug": "^4.3.3",
"ethereum-cryptography": "^1.1.2",
"fs-extra": "^10.1.0",
"it-pipe": "^1.1.0",
"jayson": "^4.0.0",
"jwt-simple": "^0.5.6",
"level": "^8.0.0",
"libp2p": "^0.30.7",
"libp2p-bootstrap": "^0.14.0",
"libp2p-interfaces": "^1.2.0",
"libp2p-kad-dht": "^0.20.6",
"libp2p-mplex": "^0.10.2",
"libp2p-tcp": "^0.15.3",
"libp2p-websockets": "^0.15.1",
"memory-level": "^1.0.0",
"multiaddr": "^10.0.1",
"peer-id": "^0.14.3",
"qheap": "^1.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/fs-extra": "^9.0.13",
"@types/jwt-simple": "^0.5.33",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"file-replace-loader": "^1.2.0",
"it-pair": "^1.0.0",
"it-pushable": "^1.4.2",
"os-browserify": "^0.3.0",
"pino": "^5.8.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"supertest": "^6.1.3",
"superwstest": "^2.0.1",
"testdouble": "^3.16.6",
"testdouble-timers": "^0.1.1",
"util": "^0.12.4",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0"
},
"engines": {
"node": ">=14"
},
"devDependenciesComments": {
"node-fetch": "Hotfix for client browser build error in older Node versions (12/14), #1305, 2021-06-18"
}
}