UNPKG

1.56 kBJSONView Raw
1{
2 "name": "ethereumjs-block",
3 "version": "1.3.1",
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 --github -f md ./index.js > ./docs/index.md"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/ethereumjs/ethereumjs-block.git"
18 },
19 "keywords": [
20 "ethereum",
21 "block"
22 ],
23 "author": "mjbecze (mb@ethdev.com)",
24 "license": "MPL-2.0",
25 "bugs": {
26 "url": "https://github.com/ethereumjs/ethereumjs-block/issues"
27 },
28 "homepage": "https://github.com/ethereumjs/ethereumjs-block#readme",
29 "dependencies": {
30 "async": "^2.0.1",
31 "ethereum-common": "0.0.17",
32 "ethereumjs-tx": "^1.0.0",
33 "ethereumjs-util": "^4.0.1",
34 "merkle-patricia-tree": "^2.1.2"
35 },
36 "devDependencies": {
37 "browserify": "^13.0.0",
38 "coveralls": "^2.11.6",
39 "documentation": "^3.0.4",
40 "ethereumjs-testing": "0.0.1",
41 "istanbul": "^0.4.2",
42 "karma": "^1.3.0",
43 "karma-browserify": "^5.1.0",
44 "karma-chrome-launcher": "^2.0.0",
45 "karma-detect-browsers": "^2.0.2",
46 "karma-env-preprocessor": "^0.1.1",
47 "karma-firefox-launcher": "^1.0.0",
48 "karma-tap": "^3.1.0",
49 "standard": "^8.4.0",
50 "tape": "^4.2.0"
51 }
52}