forked from yieldprotocol/vault-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.3 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@yield-protocol/vault-v2",
"version": "0.11.0-rc8",
"description": "Yield Collateralized Debt Engine v2",
"author": "Yield Inc.",
"files": [
"contracts/*.sol",
"contracts/math/*.sol",
"contracts/constants/*.sol",
"contracts/oracles/chainlink/*.sol",
"contracts/oracles/compound/*.sol",
"contracts/oracles/composite/*.sol",
"contracts/oracles/uniswap/*.sol",
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf artifacts typechain && hardhat compile",
"test": "yarn build && hardhat test --show-stack-traces",
"test:deploy": "hardhat deploy --tags DeployTest",
"coverage": "hardhat coverage",
"lint:collisions": "yarn build && hardhat lint:collisions",
"lint:sol": "yarn lint:collisions && solhint -f table contracts/*.sol",
"lint:ts": "prettier ./test/*.ts --check",
"lint:ts:fix": "prettier ./test/*.ts --write",
"prepublishOnly": "npx tsdx build --tsconfig ./tsconfig-publish.json"
},
"devDependencies": {
"@ethersproject/providers": "^5.0.15",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"@yield-protocol/utils-v2": "^2.4.2",
"@yield-protocol/vault-interfaces": "^2.3.0-rc6",
"@yield-protocol/yieldspace-interfaces": "^2.3.0-rc2",
"chai": "4.2.0",
"dss-interfaces": "0.1.1",
"erc3156": "^0.4.8",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.0",
"hardhat": "^2.2.0",
"hardhat-abi-exporter": "^2.0.3",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-typechain": "^0.3.4",
"mocha": "^8.3.2",
"prettier": "^2.0.5",
"solhint": "^3.3.3",
"solidity-coverage": "^0.7.14",
"ts-node": "^8.10.2",
"tsdx": "^0.14.1",
"typechain": "^4.0.3",
"typechain-target-ethers-v5": "^5.0.1",
"typescript": "^3.9.7"
},
"repository": {
"url": "git+https://github.com/yieldprotocol/vault-v2.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/yieldprotocol/vault-v2/issues"
},
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/yieldprotocol/vault-v2#readme"
}