-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.03 KB
/
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
26
{
"name": "uniswap",
"description": "Uniswap things",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/astriaorg/uniswap.git"
},
"scripts": {
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'scripts/**/*.sol'",
"prettier:list": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'scripts/**/*.sol'",
"prettier:check": "prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'scripts/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'contracts/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'contracts/**/*.sol'",
"lint": "npm run prettier && npm run solhint",
"lint:check": "npm run prettier:check && npm run solhint:check"
},
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.3",
"solhint-community": "^3.7.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.3"
}
}