{
  "name": "deth",
  "description": "Ethereum node focused on Developer Experience",
  "keywords": [
    "ethereum",
    "node",
    "deth",
    "geth",
    "developer",
    "experience",
    "dx"
  ],
  "version": "0.0.5",
  "license": "MIT",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "engines": {
    "node": ">=8.0.0"
  },
  "bin": "./dist/cjs/node/runner.js",
  "files": [
    "**/dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prepublishOnly": "yarn lint && yarn test && yarn build",
    "start": "ts-node ./src/node/runner.ts",
    "lint": "eslint --ext .ts src test",
    "lint:fix": "eslint --ext .ts --fix src test",
    "typecheck": "tsc --noEmit",
    "prebuild": "rm -rf dist",
    "build": "yarn build:esm && yarn build:cjs",
    "build:esm": "tsc -p tsconfig.build.json --outDir dist/esm --module ES6",
    "build:cjs": "tsc -p tsconfig.build.json --outDir dist/cjs --declaration false && chmod +x ./dist/cjs/node/runner.js",
    "test": "mocha",
    "test:fix": "yarn lint:fix && yarn test && yarn typecheck"
  },
  "dependencies": {
    "@restless/restless": "^0.4.2",
    "@restless/sanitizers": "^0.2.3",
    "@types/glob": "^7.1.1",
    "@types/lodash": "^4.14.149",
    "@types/lru-cache": "^5.1.0",
    "abi-decoder": "^2.2.2",
    "async-mutex": "^0.1.4",
    "chalk": "^3.0.0",
    "debug": "^4.1.1",
    "ethereumjs-account": "^3.0.0",
    "ethereumjs-block": "^2.2.1",
    "ethereumjs-blockchain": "^4.0.2",
    "ethereumjs-common": "^1.4.0",
    "ethereumjs-tx": "^2.1.1",
    "ethereumjs-util": "^6.2.0",
    "ethereumts-vm": "^4.1.3",
    "ethers": "^4.0.0",
    "express": "^4.17.1",
    "fp-ts": "^2.3.1",
    "glob": "^7.1.6",
    "io-ts": "^2.0.2",
    "lodash": "^4.17.15",
    "ts-essentials": "^6.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.2.7",
    "@types/chai-as-promised": "^7.1.2",
    "@types/chai-subset": "^1.3.3",
    "@types/debug": "^4.1.5",
    "@types/express": "^4.17.2",
    "@types/mocha": "^5.2.7",
    "@types/sinon": "^7.5.1",
    "@types/sinon-chai": "^3.2.3",
    "@typescript-eslint/eslint-plugin": "^2.12.0",
    "@typescript-eslint/parser": "^2.12.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "chai-http": "^4.3.0",
    "chai-subset": "^1.6.0",
    "eslint": "^6.8.0",
    "eslint-plugin-no-only-tests": "^2.4.0",
    "mocha": "^6.2.2",
    "sinon": "^8.0.1",
    "sinon-chai": "^3.3.0",
    "ts-node": "^8.5.4",
    "typescript": "^3.7.4"
  }
}
