UNPKG

eth-hd-wallet

Version:

Lightweight Ethereum HD wallet implementation based on BIP-44 standard

77 lines (76 loc) 1.93 kB
{ "name": "eth-hd-wallet", "version": "0.5.1", "description": "Lightweight Ethereum HD wallet implementation based on BIP-44 standard", "main": "index.js", "scripts": { "build": "babel --ignore test.js,__fixtures__ --out-dir dist src", "prepublish": "npm run lint && npm run test && npm run build", "lint": "eslint ./src", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "git+https://github.com/meth-project/eth-hd-wallet.git" }, "keywords": [ "ethereum", "wallet", "hd", "bip39", "bip44", "eip85", "cryptocurrency", "bitcoin", "crypto" ], "author": "Ramesh Nair <ram@hiddentao.com>", "license": "MIT", "bugs": { "url": "https://github.com/meth-project/eth-hd-wallet/issues" }, "homepage": "https://github.com/meth-project/eth-hd-wallet#readme", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^7.2.3", "babel-jest-assertions": "0.0.3", "babel-preset-env": "^1.6.1", "es6-promisify": "^5.0.0", "eslint": "^4.4.1", "eslint-config-standard": "^10.2.1", "eslint-plugin-import": "^2.7.0", "eslint-plugin-node": "^5.1.1", "eslint-plugin-promise": "^3.5.0", "eslint-plugin-standard": "^3.0.1", "geth-private": "^2.0.0", "jest": "^21.2.1", "web3": "0.20.2" }, "dependencies": { "bitcore-mnemonic": "^1.2.5", "eth-sig-util": "^1.4.2", "ethereumjs-tx": "^1.3.3", "ethereumjs-util": "^5.1.2", "ethereumjs-wallet": "^0.6.0" }, "jest": { "roots": [ "./src/" ], "testMatch": [ "**/?(*.)test.js" ], "collectCoverageFrom": [ "**/*.js" ], "coverageReporters": [ "html", "text", "text-summary" ], "setupTestFrameworkScriptFile": "./.jest/setupTestFramework.js" } }