forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.68 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
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@ethereumjs/client",
"version": "0.5.0",
"description": "EthereumJS client implementation",
"license": "MPL-2.0",
"author": "Vinay Pulim ([email protected])",
"keywords": [
"ethereum",
"ethereumjs",
"client",
"blockchain",
"light sync",
"full sync"
],
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"browser": "dist/bundle.js",
"bin": {
"ethereumjs": "dist/bin/cli.js"
},
"scripts": {
"preinstall": "npm run binWorkaround",
"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:node && npm run build:browser",
"build:node": "../../config/cli/ts-build.sh node",
"build:browser": "../../config/cli/ts-build.sh browser && npm run bundle && rm -rf dist.browser",
"prepublishOnly": "../../config/cli/prepublish.sh",
"clean": "../../config/cli/clean-package.sh",
"bundle": "webpack",
"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": "nyc npm run test:unit",
"docs:build": "typedoc --options typedoc.js --tsconfig tsconfig.prod.json",
"lint": "../../config/cli/lint.sh",
"lint:fix": "../../config/cli/lint-fix.sh",
"tape": "tape -r ts-node/register",
"test": "npm run test:unit && npm run test:integration && npm run test:browser",
"test:unit": "npm run tape -- 'test/!(integration|cli)/**/*.spec.ts' 'test/*.spec.ts'",
"test:integration": "npm run tape -- 'test/integration/**/*.spec.ts'",
"test:cli": "npm run tape -- 'test/cli/*.spec.ts'",
"test:browser": "karma start karma.conf.js",
"tsc": "../../config/cli/ts-compile.sh"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^4.1.1",
"@ethereumjs/block": "^3.6.2",
"@ethereumjs/blockchain": "^5.5.2",
"@ethereumjs/common": "^2.6.4",
"@ethereumjs/devp2p": "^4.2.2",
"@ethereumjs/ethash": "^1.1.0",
"@ethereumjs/tx": "^3.5.2",
"@ethereumjs/vm": "^5.9.1",
"body-parser": "^1.19.2",
"chalk": "^4.1.2",
"connect": "^3.7.0",
"cors": "^2.8.5",
"debug": "^4.3.3",
"ethereumjs-util": "^7.1.5",
"fs-extra": "^10.0.0",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.2",
"jayson": "^3.4.4",
"jwt-simple": "^0.5.6",
"level": "^6.0.0",
"level-mem": "^5.0.1",
"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",
"merkle-patricia-tree": "^4.2.4",
"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": {
"@babel/plugin-transform-spread": "^7.10.1",
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/fs-extra": "^8.1.0",
"@types/jwt-simple": "^0.5.33",
"@types/levelup": "^4.3.0",
"@types/node": "^16.11.7",
"@types/tape": "^4.13.2",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^6.8.0",
"file-replace-loader": "^1.2.0",
"it-pair": "^1.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-tap": "^4.2.0",
"karma-typescript": "^5.5.3",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"os-browserify": "^0.3.0",
"pino": "^5.8.0",
"pino-pretty": "^2.2.2",
"process": "^0.11.10",
"pull-pair": "^1.1.0",
"stream-browserify": "^3.0.0",
"supertest": "^6.1.3",
"superwstest": "^2.0.1",
"tape": "^5.3.1",
"testdouble": "^3.8.2",
"testdouble-timers": "^0.1.1",
"ts-node": "^10.2.1",
"typedoc": "^0.22.4",
"typescript": "^4.4.2",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0"
},
"devDependenciesComments": {
"node-fetch": "Hotfix for client browser build error in older Node versions (12/14), #1305, 2021-06-18"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"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"
}
}