forked from solidity-labs-io/forge-proposal-simulator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 992 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
{
"name": "standard-repo",
"description": "Foundry-based library for proposals simulations",
"version": "1.0.0",
"devDependencies": {
"husky": "8.0.3",
"prettier": "3.0.0",
"prettier-plugin-solidity": "1.2.0",
"solhint": "4.0.0"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "solhint --config ./.solhintrc {addresses,proposals,utils,test,examples}/**/*.sol",
"prettier": "prettier \"**/*\" --ignore-path .prettierignore --list-different",
"prettier:write": "prettier \"**/*\" --ignore-path .prettierignore -w",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}