-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "foundry-storage-check",
"version": "3.7.0",
"description": "Github Action checking the storage layout diff from Foundry storage layout reports",
"author": {
"name": "Romain (Rubilmax) Milon",
"email": "[email protected]",
"url": "https://github.com/rubilmax"
},
"license": "UNLICENSED",
"main": "lib/index.js",
"engines": {
"node": "^20"
},
"scripts": {
"build": "rm -rf lib && tsc --build ./tsconfig.build.json",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"package": "rm -rf dist && ncc build --no-cache --external encoding --license licenses.txt",
"release": "yarn build && yarn package",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubilmax/foundry-storage-check.git"
},
"bugs": {
"url": "https://github.com/Rubilmax/foundry-storage-check/issues"
},
"homepage": "https://github.com/Rubilmax/foundry-storage-check#readme",
"keywords": [
"foundry",
"forge",
"storage",
"report",
"hardhat",
"solidity",
"upgrades",
"proxy"
],
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/solidity": "^5.7.0",
"@octokit/core": "^6.1.2",
"@solidity-parser/parser": "^0.18.0",
"js-sha3": "^0.8.0",
"lodash": "^4.17.21",
"uuid": "^10.0.0"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@jest/types": "^29.6.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/adm-zip": "^0.5.7",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@vercel/ncc": "^0.38.3",
"adm-zip": "^0.5.16",
"colors": "^1.4.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
}
}