-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
{
"name": "@mzero-labs/spog",
"version": "1.0.0",
"description": "SPOG contract ABIs",
"main": "index.js",
"author": "M^0 Labs <contact@m0.xyz>",
"license": "GPL-3.0",
"scripts": {
"coverage": "make -B coverage",
"coverage-summary": "make -B coverage-summary",
"doc": "forge doc --serve --port 4000",
"prettier": "prettier --write '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": "make -B integration",
"test-invariant": "make -B invariant"
},
"devDependencies": {
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1"
},
"engines": {
"node": ">=18"
}
}