-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "morpho-aave-v3",
"version": "1.0.0",
"description": "Core contracts of Morpho-AaveV3's protocol",
"author": "Morpho Labs <security@morpho.xyz>",
"license": "AGPL-3.0-only",
"keywords": [
"defi",
"protocol",
"smart-contracts",
"aave-v3",
"morpho",
"lending"
],
"homepage": "https://github.com/morpho-dao/morpho-aave-v3#readme",
"bugs": {
"url": "https://github.com/morpho-dao/morpho-aave-v3/issues",
"email": "security@morpho.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/morpho-dao/morpho-aave-v3.git"
},
"scripts": {
"test": "forge test",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"lint-staged": {
"*.sol": "forge fmt",
"*.json": "prettier",
"*.yml": "prettier"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}