ethereumjs-wallet/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-23 18:57:37 +00:00
{
"name": "ethereumjs-wallet",
"version": "0.6.1",
2016-02-23 18:57:37 +00:00
"description": "Utilities for handling Ethereum keys",
"main": "index.js",
"files": [
"/*.js",
"test/"
],
2016-02-23 18:57:37 +00:00
"scripts": {
2016-03-26 18:19:09 +00:00
"coverage": "istanbul cover _mocha",
"coveralls": "npm run build:dist && npm run coverage && coveralls <coverage/lcov.info",
2016-02-23 18:57:37 +00:00
"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 ."
2016-02-23 18:57:37 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-wallet.git"
2016-02-23 18:57:37 +00:00
},
"keywords": [
"ethereum",
"wallets",
"keys"
],
"author": "Alex Beregszaszi <alex@rtfs.hu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-wallet/issues"
2016-02-23 18:57:37 +00:00
},
"homepage": "https://github.com/ethereumjs/ethereumjs-wallet",
2016-02-23 18:57:37 +00:00
"dependencies": {
2018-07-28 18:19:48 +00:00
"aes-js": "^3.1.1",
"bs58check": "^2.1.2",
"ethereumjs-util": "^5.2.0",
"hdkey": "^1.0.0",
"safe-buffer": "^5.1.2",
"scrypt.js": "^0.2.0",
2018-02-03 23:12:59 +00:00
"utf8": "^3.0.0",
2018-07-28 18:19:48 +00:00
"uuid": "^3.3.2"
2016-02-23 18:57:37 +00:00
},
"devDependencies": {
"babel-cli": "^6.26.0",
2018-07-28 18:19:48 +00:00
"babel-preset-env": "^1.7.0",
2018-02-03 23:12:59 +00:00
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
2018-07-28 18:19:48 +00:00
"mocha": "^5.2.0",
"standard": "^11.0.0"
2016-02-23 18:57:37 +00:00
},
"standard": {
"globals": [
"describe",
"it"
],
"ignore": [
"./*.js"
2016-02-23 18:57:37 +00:00
]
}
}