-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.83 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
{
"name": "foundry-gas-diff",
"version": "3.18.0",
"description": "Github Action reporting gas diff from Foundry gas reports",
"author": {
"name": "Romain (Rubilmax) Milon",
"email": "[email protected]",
"url": "https://github.com/rubilmax"
},
"license": "MIT",
"main": "lib/index.js",
"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 --source-map --no-cache --license licenses.txt",
"release": "yarn build && yarn package",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubilmax/foundry-gas-diff.git"
},
"bugs": {
"url": "https://github.com/Rubilmax/foundry-gas-diff/issues"
},
"homepage": "https://github.com/Rubilmax/foundry-gas-diff#readme",
"keywords": [
"foundry",
"forge",
"gas",
"report",
"hardhat"
],
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@octokit/core": "^6.1.2",
"adm-zip": "^0.5.16",
"lodash": "^4.17.21",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/adm-zip": "^0.5.5",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.7.8",
"@vercel/ncc": "^0.36.1",
"colors": "^1.4.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
}
}