-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.29 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
{
"name": "zen-foundry-template",
"version": "0.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"compile": "forge build",
"test": "forge test --fork-url $(grep ARCHIVE_NODE_URL_GOERLI_L2 .env | cut -d '=' -f2) --etherscan-api-key $(grep ETHERSCAN_API_KEY .env | cut -d '=' -f2) --gas-report -vvv",
"format": "forge fmt",
"coverage": "forge coverage --fork-url $(grep ARCHIVE_NODE_URL_GOERLI_L2 .env | cut -d '=' -f2)",
"coverage:generate-lcov": "forge coverage --fork-url $(grep ARCHIVE_NODE_URL_GOERLI_L2 .env | cut -d '=' -f2) --report lcov",
"check:upgradeability": "slither-check-upgradeability . Account --proxy-name AccountProxy",
"analysis:solsat": "solstat --path ./src",
"analysis:slither": "slither .",
"gas-snapshot": "forge snapshot --fork-url $(grep ARCHIVE_NODE_URL_GOERLI_L2 .env | cut -d '=' -f2)",
"view-storage-layout": "slither --print variable-order ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sambacha/zen-foundry-template.git"
},
"keywords": [],
"author": "SEE CONTRIBUTORS",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/sambacha/zen-foundry-template/issues"
},
"homepage": "https://github.com/sambacha/zen-foundry-template#readme"
}