-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.44 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
{
"name": "treasury-backed-vault-saviour",
"version": "1.6.5",
"private": true,
"description": "Vault saviour using treasury funds to prevent liquidation",
"homepage": "https://opendollar.com/",
"repository": {
"type": "git",
"url": "https://github.com/open-dollar/treasury-backed-vault-saviour"
},
"license": "GNU AGPL",
"author": "OpenFi Foundation",
"contributors": [
"pi0neerpat (https://github.com/pi0neerpat)",
"daopunk (https://github.com/daopunk)",
"MrDeadce11 (https://github.com/MrDeadCe11)"
],
"scripts": {
"build": "forge build",
"coverage": "forge coverage",
"lint:check": "yarn lint:sol && forge fmt --check",
"lint:fix": "sort-package-json && forge fmt && yarn lint:sol --fix",
"lint:sol": "cross-env solhint 'src/**/*.sol' 'test/**/*.sol'",
"test": "FOUNDRY_FUZZ_RUNS=128 FOUNDRY_FUZZ_MAX_TEST_REJECTS=1000000 forge test -vvv --ffi ",
"test:coverage": "forge coverage --report lcov && lcov --ignore-errors unused --remove lcov.info 'node_modules/*' 'script/*' 'test/*' 'src/contracts/for-test/*' 'src/libraries/*' -o lcov.info.pruned && mv lcov.info.pruned lcov.info && genhtml -o coverage-report lcov.info"
},
"dependencies": {
"@opendollar/contracts": "0.0.0-984c17c2",
"@openzeppelin/contracts": "4.9.6"
},
"devDependencies": {
"cross-env": "^7.0.3",
"solhint": "^4.5.2",
"solhint-plugin-defi-wonderland": "^1.1.3",
"sort-package-json": "^2.8.0"
}
}