{
  "name": "@findeth/hdnode",
  "version": "0.6.1",
  "description": "Small HD wallet key derivation library",
  "author": "Maarten Zuidhoorn <maarten@zuidhoorn.com>",
  "homepage": "https://github.com/FindETH/hdnode",
  "repository": {
    "type": "git",
    "url": "https://github.com/FindETH/hdnode.git"
  },
  "bugs": {
    "url": "https://github.com/FindETH/hdnode/issues",
    "email": "info@findeth.io"
  },
  "keywords": [
    "ethereum",
    "derivation",
    "ledger",
    "trezor",
    "mnemonic-phrase",
    "findeth",
    "bip32",
    "bip39",
    "bip44",
    "secp256k1"
  ],
  "license": "MIT",
  "main": "lib/cjs/index.js",
  "module": "lib/es/index.js",
  "typings": "typings/index.d.ts",
  "sideEffects": false,
  "engines": {
    "node": "12"
  },
  "files": [
    "lib",
    "src",
    "typings"
  ],
  "scripts": {
    "clean": "rimraf lib",
    "build": "yarn run clean && yarn run build:source && yarn run build:declarations",
    "build:source": "yarn run build:source:cjs && yarn run build:source:es",
    "build:source:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src --extensions '.ts' --source-maps --out-dir lib/cjs",
    "build:source:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --extensions '.ts' --source-maps --out-dir lib/es",
    "build:declarations": "tsc -p tsconfig.build.json",
    "build:docs": "typedoc src",
    "test": "jest",
    "lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format && yarn run lint:lockfile",
    "lint:types": "tsc --noEmit",
    "lint:source": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
    "lint:format": "prettier --check --ignore-path .gitignore '**/*.{ts,tsx,js,json,yml}'",
    "lint:lockfile": "lockfile-lint --type yarn --path yarn.lock --allowed-hosts yarn --validate-https --validate-checksum --validate-integrity",
    "format": "prettier --write --ignore-path .gitignore '**/*.{ts,tsx,js,json,yml}'",
    "prepare": "husky install",
    "prepack": "yarn build"
  },
  "dependencies": {
    "base-x": "^3.0.8",
    "create-hash": "^1.2.0",
    "create-hmac": "^1.1.7",
    "elliptic": "^6.5.3",
    "get-random-values": "^1.2.2",
    "keccak": "^3.0.1",
    "pbkdf2": "^3.1.1"
  },
  "peerDependencies": {
    "@findeth/abi": ">= 0.5.0 < 1.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.10.1",
    "@babel/core": "^7.10.2",
    "@babel/plugin-proposal-class-properties": "^7.10.1",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
    "@babel/plugin-proposal-optional-chaining": "^7.10.1",
    "@babel/plugin-syntax-bigint": "^7.8.3",
    "@babel/plugin-transform-modules-commonjs": "^7.10.1",
    "@babel/preset-env": "^7.10.2",
    "@babel/preset-typescript": "^7.10.1",
    "@findeth/abi": "^0.5.2",
    "@types/create-hash": "^1.2.2",
    "@types/create-hmac": "^1.1.0",
    "@types/elliptic": "^6.4.12",
    "@types/jest": "^26.0.15",
    "@types/keccak": "^3.0.1",
    "@types/node": "^14.14.5",
    "@types/pbkdf2": "^3.1.0",
    "@typescript-eslint/eslint-plugin": "^4.0.0",
    "@typescript-eslint/parser": "^3.3.0",
    "babel-jest": "^26.6.1",
    "babel-plugin-inline-json-import": "^0.3.2",
    "codecov": "^3.6.1",
    "cross-env": "^7.0.2",
    "eslint": "^7.2.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.21.2",
    "eslint-plugin-jest": "^24.1.0",
    "husky": "^5.1.3",
    "jest": "^24.9.0",
    "lint-staged": "^10.2.11",
    "lockfile-lint": "^4.3.7",
    "prettier": "^2.1.2",
    "rimraf": "^3.0.0",
    "ts-jest": "^24.2.0",
    "ts-node": "^9.0.0",
    "typedoc": "^0.20.16",
    "typescript": "^4.0.5"
  },
  "lint-staged": {
    "*.{ts,tsx,js}": [
      "prettier --write",
      "eslint --fix"
    ],
    "*.{json,yml}": [
      "prettier --write"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
