infrastructure-upgrade/package.json

24 lines
889 B
JSON
Raw Normal View History

2023-04-08 21:46:18 +03:00
{
"name": "@T-Hax/relayer-registry",
"author": "T-Hax",
"version": "1.0.0",
"description": "Foundry reconstruction of the \"relayer-registry\" project.",
"scripts": {
"postinstall": "chmod +x script/* && ./script/setup.sh",
"build": "chmod +x script/* && ./script/setup.sh",
"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",
"test": "forge test"
},
"devDependencies": {
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6"
}
}