communities-contracts/package.json

37 lines
1.1 KiB
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",
"commit-and-tag-version": "^12.2.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": "pnpm verify:community_erc721 && pnpm verify:community_token_deployer",
"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",
"verify:community_erc721": "./certora/scripts/verify-community-erc721.sh",
"verify:community_token_deployer": "./certora/scripts/verify-community-token-deployer.sh",
"release": "commit-and-tag-version"
2023-01-19 11:21:41 +00:00
}
}