forked from ethereumjs/ethereumjs-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "ethereumjs-block",
"version": "2.2.0",
"description": "Provides Block serialization and help functions",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"coverage": "istanbul cover ./tests/index.js",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",
"lint": "standard",
"test": "npm run test:node && npm run test:browser",
"test:browser": "karma start karma.conf.js",
"test:node": "node tests/index.js",
"build:docs": "documentation build ./index.js ./header.js --format md --shallow > ./docs/index.md && documentation build ./from-rpc.js --format md --shallow > ./docs/fromRpc.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-block.git"
},
"keywords": [
"ethereum",
"block"
],
"author": "mjbecze (mb@ethdev.com)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-block/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-block#readme",
"dependencies": {
"async": "^2.0.1",
"ethereumjs-common": "^1.1.0",
"ethereumjs-tx": "^1.2.2",
"ethereumjs-util": "^5.0.0",
"merkle-patricia-tree": "^2.1.2"
},
"devDependencies": {
"babelify": "^8.0.0",
"babel-preset-env": "^1.6.1",
"browserify": "^15.0.0",
"coveralls": "^2.11.6",
"documentation": "4.0.0-beta16",
"istanbul": "^0.4.2",
"karma": "^2.0.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-tap": "^4.0.0",
"standard": "^8.4.0",
"tape": "^4.2.0"
}
}