generated from open-dollar/contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.68 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
41
42
{
"name": "contracts-template",
"version": "1.0.0",
"private": true,
"description": "Template for projects using @opendollar/contracts with Foundry",
"homepage": "https://opendollar.com/",
"author": "OpenFi Foundation",
"license": "GNU AGPL",
"repository": {
"type": "git",
"url": "git+https://github.com/open-dollar/contracts-template.git"
},
"contributors": [
"pi0neerpat (https://github.com/pi0neerpat)",
"daopunk (https://github.com/daopunk)",
"MrDeadce11 (https://github.com/MrDeadCe11)"
],
"scripts": {
"build": "forge build",
"coverage": "forge coverage",
"propose": "./tasks/governanceManager.sh",
"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-e31c2151",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"dotenv": "^16.4.5",
"ethers": "^6.12.0",
"forge-std": "https://github.com/foundry-rs/forge-std.git#e8a047e3f40f13fa37af6fe14e6e06283d9a060e"
},
"devDependencies": {
"cross-env": "^7.0.3",
"solhint": "^4.5.2",
"solhint-plugin-defi-wonderland": "^1.1.3",
"sort-package-json": "^2.8.0"
}
}