-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 932 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
30
31
32
33
{
"name": "@6boris/awesome-web3-contracts",
"description": "",
"version": "0.0.1",
"author": {
"name": "6boris",
"url": "https://github.com/6boris"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"ethernaut",
"hacker"
],
"private": true,
"scripts": {
"clean": "rm -rf foundry/cache foundry/out foundry/broadcast",
"lint": "yarn lint:sol && yarn lint:prettier",
"lint:sol": "forge fmt && yarn solhint foundry/test/**/*.sol contracts/**/*.sol --fix",
"lint:prettier": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir foundry/coverage"
},
"devDependencies": {
"prettier": "^3.2.4",
"solhint": "^4.1.1"
}
}