forked from timurguvenkaya/foundry-multichain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 806 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "forge-multi-deploy",
"version": "1.0.0",
"main": "index.js",
"author": "Timur Guvenkaya <[email protected]>",
"license": "MIT",
"devDependencies": {
"husky": "^8.0.0",
"prettier": "2.8.4",
"prettier-plugin-solidity": "1.1.2",
"solhint": "^3.4.0"
},
"scripts": {
"prettier": "./node_modules/.bin/prettier --write src/**/*.sol src/*.sol test/**/*.sol test/*.sol script/**/*.sol",
"solhint": "./node_modules/.bin/solhint -f stylish src/**/*.sol src/*.sol test/**/*.sol test/*.sol script/**/*.sol",
"test": "forge test -vvvv",
"snapshot": "forge snapshot --snap .gas-snapshot -vvv",
"snapshot-diff": "forge snapshot --diff .gas-snapshot -vvv",
"prepare": "husky install"
}
}