-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "v1-core",
"description": "Pesto is a minimalist, on-chain derivatives protocol that enables users to create independent positions with varying degrees of exposure and hedging strategies.",
"author": "Chain Rule, LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chainrule-labs/pesto.git"
},
"scripts": {
"commit": "cz",
"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"
},
"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"
}
}