-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "aave-v2-payloads",
"description": "An opionated template for creating aave proposal payloads.",
"author": "Yonatan Hayun <[email protected]>",
"version": "0.0.1",
"license": "AGPL-3.0-only",
"files": [
"src/**/*.sol"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "npm run lint"
},
"scripts": {
"setup": "make clean && make build",
"sync": "make update",
"add": "make install",
"test": "make test",
"snapshot": "make snapshot",
"report": "make report",
"lint": "make lint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChaosLabsInc/aave-v2-payloads#readme.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/ChaosLabsInc/aave-v2-payloads#readme/issues"
},
"homepage": "https://github.com/ChaosLabsInc/aave-v2-payloads#readme",
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19"
}
}