2016-02-23 18:57:37 +00:00
|
|
|
{
|
|
|
|
"name": "ethereumjs-wallet",
|
2018-02-09 12:04:32 +00:00
|
|
|
"version": "0.6.1",
|
2016-02-23 18:57:37 +00:00
|
|
|
"description": "Utilities for handling Ethereum keys",
|
2018-03-06 13:42:23 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2016-02-23 18:57:37 +00:00
|
|
|
"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",
|
2018-03-06 13:42:23 +00:00
|
|
|
"prepublishOnly": "npm run lint && npm run test:build",
|
2018-08-07 09:05:17 +00:00
|
|
|
"test": "mocha ./src/test/*.js",
|
2018-03-06 13:42:23 +00:00
|
|
|
"test:build": "npm run build:dist && mocha ./dist/test/*.js",
|
|
|
|
"build:dist": "babel *.js test/*.js -d dist/"
|
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": {
|
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",
|
2016-04-25 18:53:26 +00:00
|
|
|
"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": {
|
2018-03-06 13:42:23 +00:00
|
|
|
"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"
|
2018-03-06 13:42:23 +00:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"dist/**"
|
2016-02-23 18:57:37 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|