UNPKG

1.89 kBJSONView Raw
1{
2 "name": "ethereumjs-block",
3 "version": "1.6.0",
4 "description": "Provides Block serialization and help functions",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "istanbul cover ./tests/index.js",
8 "coveralls": "npm run coverage && coveralls < coverage/lcov.info",
9 "lint": "standard",
10 "test": "npm run test:node && npm run test:browser",
11 "test:browser": "karma start karma.conf.js",
12 "test:node": "tape ./tests/index.js",
13 "build:docs": "documentation build ./index.js --format md --shallow > ./docs/index.md && documentation build ./from-rpc.js --format md --shallow > ./docs/fromRpc.md"
14 },
15 "browserify": {
16 "transform": [
17 [
18 "babelify",
19 {
20 "presets": [
21 "es2015"
22 ]
23 }
24 ]
25 ]
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/ethereumjs/ethereumjs-block.git"
30 },
31 "keywords": [
32 "ethereum",
33 "block"
34 ],
35 "author": "mjbecze (mb@ethdev.com)",
36 "license": "MPL-2.0",
37 "bugs": {
38 "url": "https://github.com/ethereumjs/ethereumjs-block/issues"
39 },
40 "homepage": "https://github.com/ethereumjs/ethereumjs-block#readme",
41 "dependencies": {
42 "async": "^2.0.1",
43 "ethereum-common": "0.0.18",
44 "ethereumjs-tx": "^1.2.2",
45 "ethereumjs-util": "^5.0.0",
46 "merkle-patricia-tree": "^2.1.2"
47 },
48 "devDependencies": {
49 "babel-preset-es2015": "^6.24.0",
50 "babelify": "^7.3.0",
51 "browserify": "^13.0.0",
52 "coveralls": "^2.11.6",
53 "documentation": "4.0.0-beta16",
54 "ethereumjs-testing": "0.0.1",
55 "istanbul": "^0.4.2",
56 "karma": "^1.3.0",
57 "karma-browserify": "^5.1.0",
58 "karma-chrome-launcher": "^2.0.0",
59 "karma-detect-browsers": "^2.2.1",
60 "karma-env-preprocessor": "^0.1.1",
61 "karma-firefox-launcher": "^1.0.0",
62 "karma-tap": "^3.1.0",
63 "standard": "^8.4.0",
64 "tape": "^4.2.0"
65 }
66}