-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
42
43
44
45
46
47
48
49
{
"name": "sol-abi-compare",
"version": "1.0.0",
"description": "Solidity ABI compare tool",
"main": "./src/index.ts",
"scripts": {
"compare": "ts-node ./src/index.ts compare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infloop/sol-abi-compare.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/infloop/sol-abi-compare/issues"
},
"homepage": "https://github.com/infloop/sol-abi-compare#readme",
"dependencies": {
"@types/color": "^3.0.3",
"@types/columnify": "^1.5.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chalk": "^4.1.2",
"columnify": "^1.6.0",
"commander": "^10.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.13.1",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zod": "^3.20.6"
},
"lint-staged": {
"./**/src/**/*.ts": [
"yarn eslint --max-warnings=0",
"yarn jest --verbose --bail --findRelatedTests"
],
"./**/*.{ts,js,md,json}": [
"prettier --write"
]
}
}