{
  "name": "unchained-bitcoin",
  "version": "1.2.1",
  "description": "Unchained Capital's bitcoin utilities library.",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unchained-capital/unchained-bitcoin.git"
  },
  "author": "Unchained Capital",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/unchained-capital/unchained-bitcoin/issues"
  },
  "homepage": "https://unchained-capital.github.io/unchained-bitcoin",
  "engines": {
    "node": ">=16"
  },
  "types": "./lib/index.d.ts",
  "devDependencies": {
    "@babel/cli": "^7.7.0",
    "@babel/core": "^7.7.2",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
    "@babel/preset-env": "^7.9.5",
    "@babel/preset-typescript": "^7.12.7",
    "@commitlint/cli": "^17.4.3",
    "@commitlint/config-conventional": "^17.4.3",
    "@types/jest": "^29.5.4",
    "@types/node": "^14.14.22",
    "@typescript-eslint/eslint-plugin": "^4.14.0",
    "@typescript-eslint/parser": "^4.14.0",
    "bs58": "^4.0.1",
    "eslint": "^6.6.0",
    "eslint-plugin-jest": "^23.0.3",
    "husky": "^8.0.3",
    "jest": "^29.4.1",
    "jest-junit": "^9.0.0",
    "lint-staged": "^13.1.2",
    "mocha": "^10.2.0",
    "prettier": "^2.8.4",
    "typescript": "^4.1.3"
  },
  "scripts": {
    "build-types": "tsc -p tsconfig.json",
    "build-types:watch": "tsc --watch",
    "check-types": "tsc -p tsconfig.json --noEmit --emitDeclarationOnly false",
    "compile": "npm run build-types && babel --extensions .ts,.js --ignore '**/*.test.js' --ignore '**/*.test.ts' -d lib/ src/",
    "compile:watch": "npm run build-types:watch && babel --extensions .ts,.js --watch --ignore '**/*.test.js' --ignore '**/*.test.ts' -d lib/ src/",
    "coverage": "jest --coverage",
    "prepublish": "npm run compile",
    "pretest": "npm run compile",
    "prepare": "npm run compile && husky install",
    "test": "jest src",
    "test:watch": "jest --watch src",
    "docs": "./bin/build-docs.sh",
    "lint": "eslint src"
  },
  "bin": {},
  "dependencies": {
    "@babel/polyfill": "^7.7.0",
    "bignumber.js": "^8.1.1",
    "bip32": "^2.0.5",
    "bip66": "^1.1.5",
    "bitcoin-address-validation": "^2.2.3",
    "bitcoinjs-lib": "^5.1.10",
    "bs58check": "^2.1.2",
    "bufio": "^1.2.0",
    "core-js": "^2.6.10"
  },
  "directories": {
    "lib": "lib"
  },
  "babel": {
    "plugins": [
      "@babel/proposal-class-properties",
      "@babel/proposal-object-rest-spread"
    ],
    "presets": [
      "@babel/typescript",
      [
        "@babel/env",
        {
          "useBuiltIns": "usage",
          "corejs": 2,
          "targets": {
            "browsers": [
              "last 2 versions",
              "safari >= 7"
            ]
          }
        }
      ]
    ]
  }
}
