forked from lidofinance/dual-governance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.88 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.88 KB
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
{
"name": "lido-dual-governance",
"version": "0.0.1",
"description": "Lido dual governance",
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"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 --include scripts/launch/DGLaunchStateVerifier.sol --include scripts/launch/OmnibusBase.sol --include scripts/launch/RolesValidatorBase.sol --include scripts/launch/TimeConstraints.sol --exclude scripts/utils --ignore-errors inconsistent --ignore-errors category",
"test": "forge test",
"test:unit": "./commands/run-unit-tests.sh",
"test:scenario": "./commands/run-scenario-tests.sh",
"test:regressions": "./commands/run-regressions-tests.sh",
"test:integration": "./commands/run-integration-tests.sh",
"test:solvency-simulation": "./commands/run-solvency-simulation-test.sh",
"test:complete-rage-quit": "./commands/run-complete-rage-quit-test.sh",
"forge:script": "./commands/run-forge-script.sh"
},
"lint-staged": {
"*.sol": [
"forge fmt",
"solhint --ignore-path .solhintignore"
]
},
"devDependencies": {
"dotenv": "^17.0.0",
"ethers": "^6.14.4",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"node-fetch": "^2.7.0",
"solhint": "^4.1.1",
"solhint-plugin-lido": "^0.0.4",
"ts-node": "^10.9.2"
},
"packageManager": "npm@11.0.0+sha512.11dff29565d2297c74e7c594a9762581bde969f0aa5cbe6f5b3644bf008a16c065ece61094d9ffbb81125be38df8e1ba43eb8244b3d30c61eb797e9a2440e3ec"
}