ethereumjs-wallet/package.json

63 lines
1.5 KiB
JSON

{
"name": "ethereumjs-wallet",
"version": "0.6.2",
"description": "Utilities for handling Ethereum keys",
"main": "index.js",
"files": [
"*.js",
"test/"
],
"scripts": {
"coverage": "istanbul cover _mocha",
"coveralls": "npm run build:dist && npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"prepublishOnly": "npm run lint && npm run test:build",
"test": "mocha ./src/test/*.js",
"test:build": "npm run build:dist && mocha ./test/*.js",
"build:dist": "babel src/ -d ."
},
"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.1",
"bs58check": "^2.1.2",
"ethereumjs-util": "^6.0.0",
"hdkey": "^1.1.0",
"randombytes": "^2.0.6",
"safe-buffer": "^5.1.2",
"scrypt.js": "^0.3.0",
"utf8": "^3.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"standard": "^12.0.0"
},
"standard": {
"globals": [
"describe",
"it"
],
"ignore": [
"./*.js"
]
}
}