generated from foundry-rs/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 861 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
{
"name": "cally",
"author": "outdoteth",
"version": "1.0.0",
"description": "Exotic NFT and ERC20 covered call vaults",
"homepage": "https://github.com/outdoteth/cally",
"repository": {
"type": "git",
"url": "git+https://github.com/outdoteth/cally.git"
},
"scripts": {
"prettier": "prettier --write 'src/**/*.sol'",
"prettier:list": "prettier --list-different 'src/**/*.sol'",
"prettier:check": "prettier --check 'src/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"lint": "npm run prettier && npm run solhint",
"lint:check": "npm run prettier:check && npm run solhint:check"
},
"dependencies": {
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7"
}
}