{
  "name": "@rainblock/ethereum-block",
  "version": "2.1.3",
  "description": "An implementation of the Ethereum schema for typescript",
  "main": "dist/node.js",
  "browser": {
    "./dist/node.js": "./dist/browser.js"
  },
  "types": "dist/ethereum-block.d.js",
  "scripts": {
    "test": "npm run test:node && npm run test:browser",
    "coverage": "istanbul cover ./test/index.js",
    "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
    "lint": "gts check",
    "test:browser": "karma start karma.conf.js",
    "test:node": "mocha -r ts-node/register src/**/*.spec.ts --timeout 40000",
    "benchmark": "node -r ts-node/register src/ethereum-block.bench.ts",
    "rebuild": "node-gyp rebuild",
    "prepublishOnly": "npm run compile",
    "preinstall": "npm run rebuild",
    "typedoc": "typedoc --out docs $(pwd)/src --target es6 --mode file --tsconfig ./tsconfig.json --excludePrivate --excludeProtected --excludeNotExported --exclude '**/*+(spec|bench).ts'",
    "check": "gts check",
    "clean": "gts clean",
    "compile": "mkdir -p dist; tsc -p .;rollup -c > dist/node.js && BROWSER=true rollup -c > dist/browser.js; cp build/src/*.d.ts dist",
    "fix": "gts fix",
    "pretest": "npm run compile",
    "posttest": "npm run check",
    "prepare": "git submodule init; git submodule update"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/RainBlock/ethereum-block.git"
  },
  "bugs": {
    "url": "https://github.com/RainBlock/ethereum-block/issues"
  },
  "keywords": [
    "block",
    "ethereum",
    "bigint"
  ],
  "engines": {
    "node": ">= 10.0.0"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "bigint-buffer": "^1.1.0",
    "bindings": "^1.3.0",
    "rlp-stream": "^0.1.0"
  },
  "devDependencies": {
    "@types/benchmark": "^1.0.31",
    "@types/chai": "^4.1.4",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.7.1",
    "@types/secp256k1": "^3.5.0",
    "async-chunks": "^1.1.0",
    "benchmark": "^2.1.4",
    "chai": "^4.1.2",
    "coveralls": "^3.0.2",
    "ethereumjs-util": "^5.0.0",
    "gts": "^0.5.4",
    "istanbul": "^0.4.1",
    "karma": "^4.0.1",
    "karma-chrome-launcher": "^2.2.0",
    "karma-env-preprocessor": "^0.1.1",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-webpack": "^3.0.0",
    "keccak": "^1.4.0",
    "microtime": "^2.1.8",
    "mocha": "^5.2.0",
    "pre-commit": "^1.2.2",
    "rollup": "^0.66.0",
    "rollup-plugin-replace": "^2.0.0",
    "secp256k1": "^3.5.2",
    "tape": "^4.4.0",
    "ts-loader": "^4.5.0",
    "ts-node": "^7.0.1",
    "typedoc": "^0.14.0",
    "typescript": "^3.3.3333",
    "webpack": "^4.29.6",
    "webpack-cli": "^3.2.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "contributors": [
    "Michael Wei <mwei@vmware.com> (https://github.com/no2chem)"
  ],
  "files": [
    "/dist",
    "/ext/xkcp/lib/high/Keccak",
    "/ext/xkcp/lib/low/KeccakP-1600/Optimized64/KeccakP-1600-opt64.c",
    "/ext/secp256k1/src/secp256k1.c",
    "ext/xkcp/lib/common",
    "ext/xkcp/lib/low/KeccakP-1600/Optimized64",
    "ext/xkcp/lib/low/KeccakP-1600/Optimized64/LCufullshld",
    "ext/xkcp/lib/low/KeccakP-1600/Optimized",
    "ext/xkcp/lib/low/common",
    "ext/secp256k1/include",
    "ext/secp256k1/src",
    "src/*.c",
    "binding.gyp"
  ],
  "gypfile": true
}
