-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 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
70
71
{
"name": "@indexed-finance/apr-oracles",
"description": "",
"license": "MIT",
"version": "0.0.2",
"homepage": "https://github.com/indexed-finance/apr-oracles#readme",
"keywords": [],
"files": [
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/interfaces/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"shelljs": "^0.8.4"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.0.8",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"ethereum-waffle": "^3.0.2",
"ethers": "^5.0.8",
"hardhat": "^2.5.0",
"hardhat-deploy": "^0.7.0-beta.56",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.3",
"husky": "^4.3.0",
"mocha": "^6.2.2",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solhint": "^3.2.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"lint": "hardhat check",
"compile": "hardhat compile",
"coverage:batcher": "hardhat coverage --testfiles \"test/BatchRebalancer.spec.ts\"",
"coverage:registry": "hardhat coverage --solcoverjs .solcover.registry.js --testfiles \"test/AdapterRegistry.spec.ts\"",
"coverage:vault": "hardhat coverage --testfiles \"test/NirnVault.spec.ts\"",
"coverage:factory": "hardhat coverage --testfiles \"test/NirnVaultFactory.spec.ts\"",
"generate-tests": "yarn test test/TestMapper.spec.ts",
"test": "hardhat test"
},
"repository": {
"type": "git",
"url": "https://github.com/indexed-finance/apr-oracles"
}
}