{
  "name": "bitcoin-core",
  "version": "5.0.0",
  "description": "A modern Bitcoin Core REST and RPC client.",
  "keywords": [
    "bitcoin",
    "bitcoind",
    "client",
    "request",
    "rest",
    "rpc"
  ],
  "homepage": "https://github.com/ruimarinho/bitcoin-core",
  "bugs": "https://github.com/ruimarinho/bitcoin-core/issues",
  "license": "MIT",
  "author": {
    "name": "Rui Marinho",
    "email": "ruipmarinho@gmail.com"
  },
  "main": "src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/ruimarinho/bitcoin-core.git"
  },
  "scripts": {
    "changelog": "github_changelog_generator --project bitcoin-core --user ruimarinho --no-issues --header-label='# Changelog' --future-release=$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
    "cover": "nyc --reporter=html --reporter=text npm test",
    "dependencies": "docker-compose up -d bitcoind bitcoind-username-only",
    "lint": "eslint src test",
    "test": "NODE_ENV=test mocha $npm_package_options_mocha",
    "testdocker": "docker-compose run --rm sut",
    "version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md"
  },
  "dependencies": {
    "@uphold/request-logger": "^2.0.0",
    "debugnyan": "^1.0.0",
    "json-bigint": "^1.0.0",
    "lodash": "^4.0.0",
    "request": "^2.53.0",
    "semver": "^5.1.0",
    "standard-error": "^1.1.0"
  },
  "devDependencies": {
    "eslint": "4.11.0",
    "eslint-config-uphold": "0.0.1",
    "mocha": "^4.0.1",
    "nock": "^9.1.0",
    "nyc": "^11.3.0",
    "pre-commit": "^1.1.2",
    "should": "^13.1.3"
  },
  "engines": {
    "node": ">=7"
  },
  "nyc": {
    "include": [
      "src/"
    ],
    "instrument": false,
    "report-dir": "./coverage",
    "sourceMap": false
  },
  "options": {
    "mocha": "--timeout 20000 --recursive --require should"
  },
  "pre-commit": [
    "lint"
  ]
}
