-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "wallet-cli-tools",
"version": "1.0.0",
"description": "CLI tools for working with Ethereum wallets (EOAs)",
"engines": {
"node": "^16"
},
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"ethereum-block-by-date": "^1.4.5",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.6.9",
"js-yaml": "^4.1.0",
"yargs": "^17.4.1"
},
"devDependencies": {
"@nahmii/eslint-config": "github:nahmii/eslint-config",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"prettier": "^2.6.2"
},
"bin": {
"date-to-block": "src/date-to-block/index.js",
"generate-private-key": "src/generate-private-key/index.js",
"keystore-to-private-key": "src/keystore-to-private-key/index.js",
"private-key-to-keystore": "src/private-key-to-keystore/index.js"
}
}