-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 821 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 821 Bytes
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
{
"name": "standard-repo",
"description": "Foundry-based library for proposals simulations",
"version": "1.0.0",
"devDependencies": {
"husky": "9.0.10",
"solhint": "4.5.2"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"scripts": {
"prepare": "husky",
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "solhint --config ./.solhintrc --ignore-path .solhintignore '**/*.sol'",
"lint:write": "solhint --config ./.solhintrc --fix '**/*.sol'",
"fmt": "forge fmt --check",
"fmt:write": "forge fmt",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}