-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.85 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.85 KB
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
43
44
{
"name": "@blockful/dao-proposals",
"description": "Foundry-based test suit for blockful DAO proposals",
"version": "1.0.0",
"author": {
"name": "0xneves",
"url": "https://github.com/0xneves"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"prettier": "^3.0.0",
"solhint": "^3.6.2"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\" --ignore-path \".prettierignore\"",
"test": "forge test",
"test:dsr-allocation": "forge test --match-test dsrAllocation --rpc-url https://eth.llamarpc.com --fork-block-number 20033000 -vvv --via-ir",
"test:claim-unused-tokens": "forge test --match-test claim_unused --rpc-url https://eth.llamarpc.com --fork-block-number 20512800 -vvv --via-ir",
"test:disable-vest-as-module": "forge test --match-test disable_vest --rpc-url https://eth.llamarpc.com --fork-block-number 20512800 -vvv --via-ir",
"calldata:claim-and-disable": "forge test --match-test claim_disable --rpc-url https://eth.llamarpc.com --fork-block-number 20512800 -vvv --via-ir",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage",
"fetch-calldata": "node src/utils/fetchTallyDraft.js",
"fetch-live-proposal": "node src/utils/fetchLiveProposal.js"
}
}