-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
45 lines (45 loc) · 1.27 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-org/universal-rewards-distributor",
"description": "A universal rewards distributor written in Solidity.",
"version": "0.1.0",
"author": "Morpho Labs <security@morpho.org>",
"license": "AGPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/morpho-org/universal-rewards-distributor.git"
},
"files": [
"src",
"README.md",
"LICENSE",
"package.json"
],
"bugs": {
"url": "https://github.com/morpho-org/universal-rewards-distributor/issues"
},
"scripts": {
"prepare": "husky install && forge install",
"script": "FOUNDRY_PROFILE=script forge script",
"build": "FOUNDRY_PROFILE=build forge build",
"deploy": "yarn build && yarn script script/DeployUrdFactory.sol --sig \"run(string memory)\"",
"verify": "FOUNDRY_PROFILE=build forge verify-contract",
"test": "FOUNDRY_PROFILE=test forge test",
"lint": "forge fmt --check",
"lint:fix": "forge fmt",
"clean": "forge clean"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2"
},
"lint-staged": {
"*.sol": "forge fmt"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}