-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
25 lines (25 loc) · 1.06 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
{
"name": "foundry-scaffold",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/Kwenta/foundry-scaffold#readme",
"scripts": {
"compile": "forge build",
"test": "forge test --fork-url $(grep OPTIMISM_GOERLI_RPC_URL .env | cut -d '=' -f2) --etherscan-api-key $(grep OPTIMISM_ETHERSCAN_API_KEY .env | cut -d '=' -f2) --gas-report -vvv",
"format": "forge fmt",
"coverage": "forge coverage --fork-url $(grep OPTIMISM_GOERLI_RPC_URL .env | cut -d '=' -f2)",
"coverage:generate-lcov": "forge coverage --fork-url $(grep OPTIMISM_GOERLI_RPC_URL .env | cut -d '=' -f2) --report lcov",
"analysis:slither": "slither .",
"gas-snapshot": "forge snapshot --fork-url $(grep OPTIMISM_GOERLI_RPC_URL .env | cut -d '=' -f2)",
"decode-custom-error": "npx @usecannon/cli decode synthetix-perps-market"
},
"repository": {
"type": "git",
"url": "https://github.com/Kwenta/foundry-scaffold"
},
"bugs": {
"url": "https://github.com/Kwenta/foundry-scaffold/issues"
},
"devDependencies": {},
"dependencies": {}
}