-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "@cosmos/solidity-ibc-eureka",
"description": "This is a solidity implementation of ibc-eureka.",
"version": "1.0.0",
"dependencies": {
"@openzeppelin/contracts": "^5.5.0",
"@openzeppelin/contracts-upgradeable": "^5.5.0",
"@uniswap/permit2": "github:Uniswap/permit2#cc56ad0f3439c502c246fc5cfcc3db92bb8b7219"
},
"devDependencies": {
"sp1-contracts": "github:succinctlabs/sp1-contracts#512b5e029abc27f6e46a3c7eba220dac83ecc306",
"forge-std": "github:foundry-rs/forge-std#v1.15.0",
"solhint": "^6.0.3",
"quicktype": "^23.2.6"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"lint:sol": "forge fmt --check && bun solhint -w 0 '{scripts,contracts,test}/**/*.sol'",
"lint:natspec": "bun natspec-smells --include 'contracts/**/*.sol'",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}