forked from edendao/omniprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1018 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
26
27
28
29
30
31
{
"name": "@edendao/omniprotocol",
"author": "Cyrus of Eden (@CyrusOfEden)",
"license": "SEE LICENSE IN LICENSE",
"version": "1.0.0",
"description": "Welcome to omnispace",
"files": [
"*.sol"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"husky": "^7.0.4",
"pinst": "^3.0.0",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"scripts": {
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint:fix": "yarn prettier:fix && yarn solhint:fix",
"lint:check": "yarn prettier:check && yarn solhint:check",
"prettier:fix": "yarn prettier --check \"src/**/*.sol\" --write",
"prettier:check": "yarn prettier --check \"src/**/*.sol\"",
"solhint:fix": "yarn solhint --config ./.solhint.json \"src/**/*.sol\" --fix",
"solhint:check": "yarn solhint --config ./.solhint.json \"src/**/*.sol\""
}
}