forked from ethereumjs/ethereumjs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "ethereumjs-client",
"version": "0.0.0",
"description": "EthereumJS client implementation",
"main": "index.js",
"scripts": {
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/lcov.info",
"coveralls": "npm run coverage && coveralls <.nyc_output/lcov.info",
"lint": "standard",
"test": "npm run lint && node tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-client.git"
},
"keywords": [
"ethereum",
"ethereumjs",
"client",
"light",
"fast"
],
"author": "Holger Drewes ([email protected])",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-client/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-client#readme",
"dependencies": {
"ethereumjs-block": "^1.7.1",
"ethereumjs-blockchain": "^3.1.0",
"ethereumjs-common": "~0.2.0",
"ethereumjs-devp2p": "^2.5.0",
"ethereumjs-util": "~5.2.0",
"leveldown": "^1.9.0",
"levelup": "^1.3.9",
"ms": "^2.1.1",
"rlp": "^2.0.0",
"winston": "^3.0.0-rc4",
"yargs": "^11.0.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "~11.6.0",
"standard": "~11.0.1",
"tape": "~4.9.0"
}
}