-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 904 Bytes
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
{
"name": "multi-strat-template",
"version": "1.0.0",
"description": "Use for new strategy repos meant for multi-strat vaults",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Byte-Masons/multi-strat-template.git"
},
"author": "tess3rac7",
"license": "ISC",
"bugs": {
"url": "https://github.com/Byte-Masons/multi-strat-template/issues"
},
"homepage": "https://github.com/Byte-Masons/multi-strat-template#readme",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"hardhat": "^2.14.0",
"husky": "^8.0.3"
}
}