2016-02-23 18:57:37 +00:00
|
|
|
{
|
|
|
|
"name": "ethereumjs-wallet",
|
2016-03-08 23:26:15 +00:00
|
|
|
"version": "0.3.0",
|
2016-02-23 18:57:37 +00:00
|
|
|
"description": "Utilities for handling Ethereum keys",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "standard",
|
2016-02-23 19:32:50 +00:00
|
|
|
"prepublish": "npm run lint && npm run test",
|
|
|
|
"test": "mocha ./test/index.js"
|
2016-02-23 18:57:37 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/axic/ethereumjs-wallet.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"ethereum",
|
|
|
|
"wallets",
|
|
|
|
"keys"
|
|
|
|
],
|
|
|
|
"author": "Alex Beregszaszi <alex@rtfs.hu>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/axic/ethereumjs-wallet/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/axic/ethereumjs-wallet",
|
|
|
|
"dependencies": {
|
2016-03-08 21:36:41 +00:00
|
|
|
"aes-js": "^0.2.3",
|
2016-03-08 20:51:47 +00:00
|
|
|
"ethereumjs-util": "^4.1.0",
|
2016-02-24 02:05:42 +00:00
|
|
|
"scrypt.js": "^0.1.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-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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|