2023-04-08 18:46:18 +00:00
|
|
|
{
|
2023-06-04 01:23:20 +00:00
|
|
|
"name": "@AlienTornadosaurusHex/relayer-registry",
|
|
|
|
"author": "AlienTornadosaurusHex",
|
2023-04-08 18:46:18 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Foundry reconstruction of the \"relayer-registry\" project.",
|
2023-06-04 01:23:20 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.tornado.ws/AlienTornadosaurusHex/relayer-registry"
|
|
|
|
},
|
2023-04-08 18:46:18 +00:00
|
|
|
"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"
|
|
|
|
}
|
2023-06-04 01:23:20 +00:00
|
|
|
}
|