generated from m0-foundation/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.52 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
45
46
47
{
"name": "@mzero-labs/smart-m-token",
"version": "2.0.0",
"description": "Wrapped M Token",
"author": "M^0 Labs <contact@m0.xyz>",
"repository": {
"type": "git",
"url": "git+https://github.com/m0-foundation/smart-m-token.git"
},
"bugs": {
"url": "https://github.com/m0-foundation/smart-m-token/issues"
},
"homepage": "https://github.com/m0-foundation/smart-m-token#readme",
"scripts": {
"build": "make -B build",
"clean": "make -B clean",
"coverage": "make -B coverage",
"deploy": "make -B deploy",
"deploy-local": "make -B deploy-local",
"doc": "forge doc --serve --port 4000",
"lint-staged": "lint-staged",
"prepack": "npm run clean && npm run build",
"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'",
"test": "make -B tests",
"test-gas": "make -B gas-report",
"test-fuzz": "make -B fuzz",
"test-integration": "make -B integration",
"test-invariant": "make -B invariant"
},
"devDependencies": {
"lint-staged": "^15.2.2",
"prettier": "^3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.2",
"solhint-plugin-prettier": "^0.1.0"
},
"engines": {
"node": ">=18"
},
"files": [
"src/**",
"out/**"
]
}