-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 937 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
{
"name": "@sense-finance/v1-space",
"version": "1.0.0",
"description": "Sense V1 Space Contract",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/sense-finance/space-v1.git"
},
"files": [
"src/**/*",
"!src/tests/*"
],
"scripts": {
"build": "forge build",
"test": "forge test -vvv --force",
"lint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"lint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"fix": "prettier --ignore-path .gitignore --write src/**/*.sol && yarn lint",
"gas-snapshot": "forge snapshot --force",
"gas-snapshot:diff": "forge snapshot --force --diff"
},
"devDependencies": {
"dotenv": "^10.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6"
}
}