{
  "name": "ethereumjs-wallet",
  "version": "1.0.2",
  "description": "Utilities for handling Ethereum keys",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "browser": "dist.browser/index.js",
  "files": [
    "src",
    "dist",
    "dist.browser"
  ],
  "scripts": {
    "build": "tsc -p ./tsconfig.prod.json && tsc -p tsconfig.browser.json",
    "prepublishOnly": "npm run lint && npm run build && npm run test",
    "docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src",
    "coverage": "npm run build && nyc --reporter=lcov npm run test:unit",
    "tsc": "tsc -p ./tsconfig.prod.json --noEmit",
    "lint": "ethereumjs-config-lint",
    "lint:fix": "ethereumjs-config-lint-fix",
    "test": "npm run lint && npm run build && npm run test:unit && npm run test:browser",
    "test:unit": "mocha --require ts-node/register ./test/**/*.ts",
    "test:browser": "karma start karma.conf.js"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm run lint"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ethereumjs/ethereumjs-wallet.git"
  },
  "keywords": [
    "ethereum",
    "wallets",
    "keys"
  ],
  "author": "Alex Beregszaszi <alex@rtfs.hu>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ethereumjs/ethereumjs-wallet/issues"
  },
  "homepage": "https://github.com/ethereumjs/ethereumjs-wallet",
  "dependencies": {
    "aes-js": "^3.1.2",
    "bs58check": "^2.1.2",
    "ethereum-cryptography": "^0.1.3",
    "ethereumjs-util": "^7.1.2",
    "randombytes": "^2.1.0",
    "scrypt-js": "^3.0.1",
    "utf8": "^3.0.0",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@ethereumjs/eslint-config-defaults": "^2.0.0",
    "@ethereumjs/config-coverage": "^2.0.0",
    "@ethereumjs/config-typescript": "^2.0.0",
    "@types/bn.js": "^5.1.0",
    "@types/lodash.zip": "^4.2.6",
    "@types/mocha": "^9.0.0",
    "@types/node": "^12.0.10",
    "ethers": "^4.0.33",
    "husky": "^4.2.5",
    "karma": "^6.3.4",
    "karma-chrome-launcher": "^3.1.0",
    "karma-firefox-launcher": "^2.1.1",
    "karma-mocha": "^2.0.1",
    "karma-typescript": "^5.5.2",
    "lodash.zip": "^4.2.0",
    "mocha": "^9.1.2",
    "nyc": "^15.1.0",
    "prettier": "^2.4.1",
    "ts-node": "^10.2.1",
    "typedoc": "^0.22.5",
    "typedoc-plugin-markdown": "^3.11.3",
    "typescript": "^4.4.3"
  }
}
