2016-02-23 18:57:37 +00:00
|
|
|
{
|
|
|
|
"name": "ethereumjs-wallet",
|
2016-04-27 10:55:36 +00:00
|
|
|
"version": "0.6.0",
|
2016-02-23 18:57:37 +00:00
|
|
|
"description": "Utilities for handling Ethereum keys",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2016-03-26 18:19:09 +00:00
|
|
|
"coverage": "istanbul cover _mocha",
|
2016-03-26 18:20:53 +00:00
|
|
|
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
|
2016-02-23 18:57:37 +00:00
|
|
|
"lint": "standard",
|
2016-02-23 19:32:50 +00:00
|
|
|
"prepublish": "npm run lint && npm run test",
|
2016-03-26 17:46:02 +00:00
|
|
|
"test": "mocha ./test/**/*.js"
|
2016-02-23 18:57:37 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-03-26 18:44:05 +00:00
|
|
|
"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": {
|
2016-03-26 18:44:05 +00:00
|
|
|
"url": "https://github.com/ethereumjs/ethereumjs-wallet/issues"
|
2016-02-23 18:57:37 +00:00
|
|
|
},
|
2016-03-26 18:44:05 +00:00
|
|
|
"homepage": "https://github.com/ethereumjs/ethereumjs-wallet",
|
2016-02-23 18:57:37 +00:00
|
|
|
"dependencies": {
|
2016-03-08 21:36:41 +00:00
|
|
|
"aes-js": "^0.2.3",
|
2016-03-23 12:15:44 +00:00
|
|
|
"bs58check": "^1.0.8",
|
2016-04-26 14:14:37 +00:00
|
|
|
"ethereumjs-util": "^4.4.0",
|
2016-03-23 13:07:16 +00:00
|
|
|
"hdkey": "^0.7.0",
|
2016-04-25 18:53:26 +00:00
|
|
|
"scrypt.js": "^0.2.0",
|
2016-02-23 20:12:18 +00:00
|
|
|
"uuid": "^2.0.1",
|
|
|
|
"utf8": "^2.1.1"
|
2016-02-23 18:57:37 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-03-26 18:20:53 +00:00
|
|
|
"coveralls": "^2.11.4",
|
2016-03-26 18:19:09 +00:00
|
|
|
"istanbul": "^0.4.1",
|
2016-02-23 19:32:50 +00:00
|
|
|
"mocha": "^2.3.4",
|
2016-02-23 18:57:37 +00:00
|
|
|
"standard": "^5.4.1"
|
|
|
|
},
|
|
|
|
"standard": {
|
|
|
|
"globals": [
|
|
|
|
"describe",
|
|
|
|
"it"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|