generated from FrankieIsLost/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
25 lines (25 loc) · 927 Bytes
/
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
{
"name": "art-gobblers",
"author": "artgobblers",
"version": "1.0.0",
"description": "Art Gobblers is an experimental decentralized art factory by Justin Roiland and Paradigm.",
"homepage": "https://github.com/FrankieIsLost/art-gobblers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FrankieIsLost/art-gobblers.git"
},
"scripts": {
"prettier": "prettier --write **.sol",
"prettier:list": "prettier --list-different **.sol",
"prettier:check": "prettier --check **.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"
},
"devDependencies": {
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6"
}
}