ethereumjs-wallet/package.json

73 lines
1.9 KiB
JSON
Raw Normal View History

2016-02-23 18:57:37 +00:00
{
"name": "ethereumjs-wallet",
2018-12-20 11:31:03 +00:00
"version": "0.6.3",
2016-02-23 18:57:37 +00:00
"description": "Utilities for handling Ethereum keys",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
2016-02-23 18:57:37 +00:00
"scripts": {
"build": "ethereumjs-config-build",
"prepublishOnly": "npm run format && npm run tslint && npm run test",
"coverage": "ethereumjs-config-coverage",
"coveralls": "ethereumjs-config-coveralls",
"format": "ethereumjs-config-format",
"format-fix": "ethereumjs-config-format-fix",
"pretest": "npm run build",
"test": "nyc mocha ./test/**/*.ts",
"tsc": "ethereumjs-config-tsc",
"tslint": "ethereumjs-config-tslint",
"tslint:fix": "ethereumjs-config-tslint-fix"
2016-02-23 18:57:37 +00:00
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
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 19:19:48 +01:00
"aes-js": "^3.1.1",
"bs58check": "^2.1.2",
2018-12-19 00:08:03 +00:00
"ethereumjs-util": "^6.0.0",
2019-03-13 12:14:09 +09:00
"hdkey": "^1.1.1",
"randombytes": "^2.0.6",
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 19:19:48 +01:00
"uuid": "^3.3.2"
2016-02-23 18:57:37 +00:00
},
"devDependencies": {
"@ethereumjs/config-nyc": "^1.1.1",
"@ethereumjs/config-prettier": "^1.1.1",
"@ethereumjs/config-tsc": "^1.1.1",
"@ethereumjs/config-tslint": "^1.1.1",
"@types/bn.js": "^4.11.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
2018-02-03 23:12:59 +00:00
"coveralls": "^3.0.0",
"husky": "^2.1.0",
2018-07-28 19:19:48 +01:00
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"typestrict": "^1.0.2"
2016-02-23 18:57:37 +00:00
}
}