forked from ethereumjs/ethereumjs-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "ethereumjs-blockchain",
"version": "3.1.0",
"description": "A module to store and interact with blocks",
"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": "tape ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-blockchain.git"
},
"keywords": [
"ethereum",
"blockchain"
],
"author": "mjbecze <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-blockchain/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-blockchain#readme",
"dependencies": {
"async": "^2.1.2",
"ethashjs": "~0.0.7",
"ethereumjs-block": "~1.7.0",
"ethereumjs-util": "~5.2.0",
"flow-stoplight": "^1.0.0",
"levelup": "^1.3.0",
"memdown": "^1.1.0",
"safe-buffer": "^5.1.1",
"semaphore": "^1.0.3",
"lru-cache": "^4.1.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^11.8.0",
"standard": "^11.0.1",
"tape": "^4.2.1"
}
}