forked from ethereumjs/ethereumjs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "ethereumjs-client",
"version": "0.0.1",
"description": "EthereumJS client implementation",
"bin": {
"ethereumjs": "bin/cli.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",
"docs": "jsdoc2md --no-cache -c .jsdoc.json lib/*.js > docs/API.md",
"lint": "standard",
"test": "npm run lint && tape 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-client.git"
},
"keywords": [
"ethereum",
"ethereumjs",
"client",
"light",
"fast"
],
"author": "Vinay Pulim ([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.4.0",
"ethereumjs-devp2p": "^2.5.0",
"ethereumjs-util": "^5.2.0",
"fs-extra": "^6.0.1",
"jayson": "^2.0.6",
"leveldown": "^1.9.0",
"levelup": "^1.3.9",
"ms": "^2.1.1",
"qheap": "^1.4.0",
"rlp": "^2.0.0",
"winston": "^3.0.0-rc4",
"yargs": "^11.0.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"json-to-markdown": "^1.0.4",
"nyc": "~11.6.0",
"sinon": "^6.0.0",
"standard": "~11.0.1",
"supertest": "^3.1.0",
"tape": "~4.9.0",
"tmp": "~0.0.33"
}
}