-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
43
44
{
"name": "@mzero-labs/protocol",
"version": "1.0.0",
"description": "M^0 Protocol contracts",
"main": "index.js",
"author": "M^0 Labs <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"coverage": "make -B coverage",
"coverage-summary": "make -B coverage-summary",
"doc": "forge doc --serve --port 4000",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'script/**/*.sol' 'src/**/*.sol' 'test/**/*.sol'",
"slither": "forge build --build-info --skip '*/test/**' --skip '*/script/**' --force && slither --compile-force-framework foundry --ignore-compile --config-file slither.config.json --fail-high .",
"solhint": "solhint -f stylish 'src/**/*.sol'",
"solhint-fix": "solhint --fix 'src/**/*.sol'",
"test": "make -B test",
"test-gas": "make -B gas-report",
"test-fuzz": "make -B fuzz",
"test-integration": "forge -B integration",
"test-invariant": "forge -B invariant"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"chai": "^5.1.0",
"ethers": "^6.11.1",
"hardhat": "^2.20.1",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"rand-seed": "^1.0.2",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.8",
"typechain": "^8.3.2"
},
"engines": {
"node": ">=20"
}
}