-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "xsafe-contracts",
"description": "Deterministic Multi-Chain Deployment",
"author": "Chain Rule, LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chainrule-labs/xsafe-contracts.git"
},
"scripts": {
"commit": "cz",
"coverage": "forge coverage --report lcov && npm run coverage:filter && npx lcov-summary lcov.info",
"coverage:filter": "lcov -r lcov.info 'test/*' 'src/dependencies/*' -o lcov.info",
"format": "forge fmt",
"format:check": "forge fmt --check",
"lint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"prepare": "husky install",
"test": "forge test --optimize && npm run coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"lcov-summary": "^1.0.1",
"solhint": "^3.6.2"
}
}