-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
32 lines (32 loc) · 1.17 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
32
{
"name": "forge-template",
"version": "0.0.1",
"description": "**Template repository for getting started quickly with Foundry projects**",
"scripts": {
"build": "forge build",
"test": "forge test",
"prettier": "prettier --write 'src/**/*.sol' 'test/**/*.sol'",
"prettier:list": "prettier --list-different 'src/**/*.sol' 'test/**/*.sol'",
"prettier:check": "prettier --check 'src/**/*.sol' 'test/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' 'test/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol' 'test/**/*.sol'",
"lint": "npm run prettier && npm run solhint",
"lint:check": "npm run prettier:check && npm run solhint:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StErMi/forge-template.git"
},
"keywords": [],
"author": "StErMi",
"bugs": {
"url": "https://github.com/StErMi/forge-template/issues"
},
"homepage": "https://github.com/StErMi/forge-template#readme",
"devDependencies": {
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}