ethereumjs-wallet/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2016-02-23 18:57:37 +00:00
{
"name": "ethereumjs-wallet",
"version": "0.6.2",
2016-02-23 18:57:37 +00:00
"description": "Utilities for handling Ethereum keys",
"main": "index.js",
"files": [
2018-08-14 23:35:18 +00:00
"*.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",
2018-12-19 00:08:03 +00:00
"ethereumjs-util": "^6.0.0",
2018-12-19 00:07:20 +00:00
"hdkey": "^1.1.0",
"randombytes": "^2.0.6",
2018-07-28 18:19:48 +00:00
"safe-buffer": "^5.1.2",
2018-12-19 00:07:20 +00:00
"scrypt.js": "^0.3.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",
2018-12-19 00:11:14 +00:00
"standard": "^12.0.0"
2016-02-23 18:57:37 +00:00
},
"standard": {
"globals": [
"describe",
"it"
],
"ignore": [
"./*.js"
2016-02-23 18:57:37 +00:00
]
}
}