forked from m0-foundation/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 908 Bytes
/
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
{
"name": "@mzero-labs/common",
"version": "1.1.0",
"description": "Common M^0 contracts",
"main": "index.js",
"author": "M^0 Labs <contact@m0.xyz>",
"license": "GPL-3.0",
"scripts": {
"coverage": "forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage",
"doc": "forge doc --serve --port 4000",
"prettier": "prettier --write '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'"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3"
},
"engines": {
"node": ">=18"
}
}