communities-contracts/package.json

33 lines
894 B
JSON
Raw Normal View History

2023-01-19 11:21:41 +00:00
{
"name": "status-im/communities-contracts",
"description": "Smart contract related to Status communities.",
"version": "1.0.0",
"author": {
"name": "0x-r4bbit",
"url": "https://github.com/vacp2p"
},
2023-01-19 11:21:41 +00:00
"devDependencies": {
"prettier": "^3.0.0",
"solhint-community": "^3.6.0"
2023-01-19 11:21:41 +00:00
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"lint": "pnpm lint:sol && pnpm prettier:check",
"verify": "certoraRun certora/CommunityTokenDeployer.conf",
"lint:sol": "forge fmt --check && pnpm solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore"
2023-01-19 11:21:41 +00:00
}
}