-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
40 lines (40 loc) · 1.38 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@generationsoftware/pt-v5-vault",
"version": "2.0.0",
"description": "PoolTogether V5 Vault contracts",
"author": {
"name": "G9 Software Inc.",
"url": "https://github.com/generationsoftware"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generationsoftware/pt-v5-vault.git"
},
"scripts": {
"clean": "forge clean",
"compile": "forge compile",
"coverage": "forge coverage --no-match-contract 'Integration|Invariant|Fuzz' --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage",
"format": "prettier --config .prettierrc --write \"**/*.{json,md,sol,yml}\"",
"format:file": "prettier --config .prettierrc --write",
"hint": "solhint --config \"./.solhint.json\" \"{src,test}/**/*.sol\"",
"lint-staged": "lint-staged",
"prepack": "npm run clean && npm run compile",
"prepare": "husky install",
"test": "forge test --nmc 'Integration|Invariant|Fuzz'",
"fuzz": "forge test --mc 'Fuzz' --nmc '-'",
"invariant": "forge test --mc 'Invariant' --nmc '-'",
"integration": "forge test --mc 'Integration' --nmc '-'"
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "15.0.0",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"solhint": "3.6.2",
"solhint-plugin-prettier": "0.0.5"
},
"files": [
"src/**",
"out/**"
]
}