{
  "name": "@ont-dev/hdkey-secp256r1",
  "version": "1.1.2",
  "description": "BIP32 hierarchical deterministic keys using secp256r1 curve",
  "main": "./lib/index.js",
  "types": "./lib/types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git://github.com/ontio/hdkey-secp256r1"
  },
  "license": "MIT",
  "keywords": [
    "bitcoin",
    "bip32",
    "bip",
    "key",
    "hierarchical",
    "deterministic",
    "crypto",
    "secp256r1"
  ],
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "\\.(ts|tsx)$": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "/test/.*\\.test\\.(ts|tsx|js)$"
  },
  "bugs": {
    "url": "https://github.com/ontio/hdkey-secp256r1/issues"
  },
  "homepage": "https://github.com/ontio/hdkey-secp256r1",
  "devDependencies": {
    "@types/node": "^10.0.0",
    "@types/elliptic": "^6.4.0",
    "@types/jest": "^23.3.1",
    "@types/bigi": "^1.4.2",
    "@types/ecurve": "^1.0.0",
    "babel-core": "^6.26.3",
    "babel-loader": "^7.1.4",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "babel-preset-stage-3": "^6.24.1",
    "bigi": "^1.4.2",
    "clean-webpack-plugin": "^0.1.19",
    "cross-env": "^5.2.0",
    "ecurve": "^1.0.6",
    "jest": "^23.4.2",
    "jest-cli": "^23.6.0",
    "ts-jest": "^23.1.4",
    "ts-loader": "^4.3.0",
    "tslint": "^5.10.0",
    "tslint-eslint-rules": "^5.3.1",
    "tslint-no-circular-imports": "^0.4.0",
    "typescript": "^3.0.3",
    "webpack": "^4.20.2",
    "webpack-cli": "^3.1.1",
    "webpack-node-externals": "^1.7.2"
  },
  "dependencies": {
    "bn.js": "^4.11.8",
    "bs58check": "^2.1.2",
    "elliptic": "^6.4.1"
  },
  "scripts": {
    "test": "jest",
    "lint": "tslint --project ./",
    "build:dev": "cross-env NODE_ENV=development webpack --mode development --display-error-details --progress --color",
    "build:prod": "cross-env NODE_ENV=production webpack --mode production --progress --color"
  }
}
