{
  "name": "bitcoind-regtest",
  "version": "0.2.3",
  "description": "Run bitcoind in regtest mode for your own blockchain",
  "keywords": [
    "bitcoin",
    "bitcoind",
    "blockchain",
    "regtest"
  ],
  "bugs": {
    "url": "https://github.com/fanatid/bitcoind-regtest/issues"
  },
  "license": "MIT",
  "author": "Kirill Fomichev <fanatid@ya.ru>",
  "files": [
    "bitcoind",
    "lib",
    "src",
    "API.md",
    "README.md"
  ],
  "main": "./lib/index.js",
  "repository": {
    "type": "git",
    "url": "git@github.com:fanatid/bitcoind-regtest.git"
  },
  "scripts": {
    "prepublish": "npm run clean && npm run compile",
    "clean": "rm -rf lib",
    "compile": "mkdir -p lib && babel src -d lib",
    "compile:watch": "mkdir -p lib && babel src -d lib -w",
    "coverage": "istanbul cover _mocha -- --compilers js:babel/register test/*js",
    "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
    "lint": "standard",
    "test": "istanbul test mocha -- --compilers js:babel/register --reporter spec test/*.js"
  },
  "dependencies": {
    "babel": "^5.8.23",
    "babel-runtime": "^5.8.24",
    "bitcoind-rpc-client": "^0.3.0",
    "bitcore-p2p": "^1.0.0",
    "core-decorators": "^0.8.1",
    "lodash": "^3.10.1",
    "make-concurrent": "^1.1.0",
    "promise-useful-utils": "^0.2.1",
    "ready-mixin": "^2.0.0",
    "rimraf": "^2.4.3",
    "tmp": "0.0.28"
  },
  "peerDependencies": {
    "bitcore-lib": "^0.13.3"
  },
  "devDependencies": {
    "babel-eslint": "^4.1.1",
    "chai": "^3.2.0",
    "coveralls": "^2.11.4",
    "istanbul": "^0.4.0",
    "mocha": "^2.3.2",
    "sinon": "^1.16.1",
    "sinon-chai": "^2.8.0",
    "standard": "^5.4.1"
  },
  "engines": {
    "node": ">=0.12"
  },
  "standard": {
    "globals": [
      "describe",
      "afterEach",
      "it"
    ],
    "parser": "babel-eslint"
  }
}
