-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
30 lines (30 loc) · 1000 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
{
"name": "lido-dual-governance",
"version": "0.0.1",
"description": "Lido dual governance",
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"test": "forge test",
"prepare": "husky",
"lint": "solhint \"addresses/**/*.sol\" \"contracts/**/*.sol\" \"scripts/**/*.sol\" \"test/**/*.sol\" --ignore-path .solhintignore",
"coverage": "forge coverage",
"precov-report": "mkdir -p ./coverage-report && forge coverage --report lcov --report-file ./coverage-report/lcov.info",
"cov-report": "genhtml ./coverage-report/lcov.info --rc derive_function_end_line=0 --rc branch_coverage=1 -o coverage-report --include contracts --ignore-errors inconsistent --ignore-errors category"
},
"lint-staged": {
"*.sol": [
"forge fmt",
"solhint --ignore-path .solhintignore"
]
},
"devDependencies": {
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"solhint": "^4.1.1",
"solhint-plugin-lido": "^0.0.4"
}
}