-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 795 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@aztec/l1-contracts",
"version": "4.2.0",
"type": "module",
"license": "Apache-2.0",
"description": "Aztec contracts for the Ethereum mainnet and testnets",
"devDependencies": {
"@openzeppelin/merkle-tree": "^1.0.8",
"ox": "^0.8.3",
"solhint": "5.1.0"
},
"scripts": {
"format": "forge fmt",
"lint": "solhint --config ./.solhint.json \"src/**/*.sol\"",
"lint:fix": "solhint --config ./.solhint.json --fix --noPrompt \"src/**/*.sol\"; forge fmt",
"slither": "forge clean && forge build --build-info --skip '*/test/**' --force && slither . --checklist --ignore-compile --show-ignored-findings --config-file ./slither.config.json | tee slither_output.md",
"slither-has-diff": "./slither_has_diff.sh"
},
"packageManager": "yarn@4.5.2"
}