-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.16 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@zerolendxyz/timelock",
"private": true,
"version": "0.9.1",
"license": "BUSL-1.1",
"scripts": {
"clean": "rimraf artifacts artifacts-zk cache cache-zk dist types forge-build",
"compile:forge": "forge build",
"compile:hardhat": "SKIP_LOAD=true hardhat compile",
"compile": "npm run compile:hardhat && npm run compile:forge",
"coverage:forge": "forge coverage --report lcov",
"coverage:hardhat": "SOLIDITY_COVERAGE=true hardhat coverage",
"coverage": "npm run coverage:hardhat && npm run coverage:forge",
"docs": "rimraf docs && hardhat docgen",
"lint:fix": "yarn lint:forge:fix && yarn lint:ts:fix",
"lint:forge:fix": "forge fmt",
"lint:forge": "forge fmt --check",
"lint:ts:fix": "prettier --write test/hardhat",
"lint:ts": "prettier --check test/hardhat",
"lint": "yarn lint:forge && yarn lint:ts",
"test": "npm run test:hardhat && npm run test:forge",
"test:forge": "forge test",
"test:hardhat": "hardhat test",
"prepublishOnly": "npm run clean && npm run compile && npm run lint && npm run docs && npm run test",
"test:certora": "bash ./certora.sh",
"prepare": "husky"
},
"files": [
"abi/**/*",
"artifacts/**/*",
"contracts/**/*",
"deployments/**/*",
"docs/**/*",
"forge-build/**/*",
"types/**/*"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.0.7",
"@nomicfoundation/hardhat-ethers": "3.0.6",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.7",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/hardhat-upgrades": "3.2.0",
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/lodash": "4.17.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"@zerolendxyz/core-v3": "^2.21.0",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethers": "6.13.1",
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"hardhat": "2.19.4",
"hardhat-abi-exporter": "2.10.1",
"hardhat-contract-sizer": "2.10.0",
"hardhat-dependency-compiler": "^1.1.4",
"hardhat-deploy": "0.12.4",
"hardhat-gas-reporter": "^1.0.8",
"husky": "9.0.11",
"lodash": "4.17.21",
"mocha": "^10.2.0",
"rimraf": "5.0.7",
"solidity-coverage": "^0.8.13",
"ts-node": "10.9.2",
"tsc": "^2.0.4",
"typechain": "8.3.2",
"typescript": "~5.0.4"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerolend/timelocks.git"
},
"author": {
"name": "ZeroLend",
"email": "security@zerolend.xyz",
"url": "https://github.com/zerolend"
},
"bugs": {
"url": "https://github.com/zerolend/timelocks/issues"
},
"homepage": "https://github.com/zerolend/timelocks#readme"
}