-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "ibc-escrow-audit",
"version": "1.0.0",
"description": "IBC Escrow Audit Tool",
"main": "audit.js",
"type": "module",
"scripts": {
"start": "node audit.js",
"quick": "node audit.js quick",
"comprehensive": "node audit.js comprehensive",
"update-chains": "node updateChains.js",
"update-chains-force": "node updateChains.js -f",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^0.21.1",
"chalk": "^5.0.0",
"dotenv": "^10.0.0",
"inquirer": "^10.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"license": "MIT"
}