/ package.json
package.json
 1  {
 2    "name": "lido-withdrawals-automation",
 3    "version": "1.0.1",
 4    "description": "Lido Withdrawals Automation is a command-line tool that assists with the LIDO validators withdrawal process. The tool streamlines the procedure by fetching validators data, generating withdrawal messages, signing them with a remote signer, encrypting the signed messages, and saving them to the output folder.",
 5    "main": "index.js",
 6    "scripts": {
 7      "test": "jest",
 8      "start": "node index.js",
 9      "coverage": "jest --coverage"
10    },
11    "author": "Stakely.io",
12    "license": "MIT",
13    "dependencies": {
14      "@chainsafe/bls-keystore": "^3.0.0",
15      "axios": "^1.3.4",
16      "dotenv": "^16.0.3",
17      "ethers": "^6.2.3",
18      "inquirer": "^7.3.3",
19      "minimist": "^1.2.8",
20      "readline-sync": "^1.4.10"
21    },
22    "devDependencies": {
23      "axios-mock-adapter": "^1.21.3",
24      "eslint": "^8.38.0",
25      "jest": "^29.5.0"
26    },
27    "bin": {
28      "lido-withdrawals-automation": "./index.js"
29    }
30  }