-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 2.22 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
{
"name": "value-vaults",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "Value Vaults Contracts and ABI",
"scripts": {
"build": "hardhat typechain",
"deploy": "hardhat deploy",
"deploy-kovan": "hardhat deploy --network kovan",
"kovan-addresses": "hardhat --network kovan run scripts/addresses.ts",
"compile": "hardhat compile",
"test": "hardhat test",
"test:verbose": "VERBOSE=true hardhat test",
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage",
"truffle-test": "truffle test",
"truffle-test:verbose": "VERBOSE=true truffle test",
"lint": "eslint .",
"lint:contracts": "solhint contracts/*.sol",
"flat:contracts": "sol-merger \"./contracts/*.sol\" ./build",
"flat:contracts-vaults": "sol-merger \"./contracts/vaults/*.sol\" ./build/vaults",
"flat:contracts-vaults-misc": "sol-merger \"./contracts/vaults/misc/*.sol\" ./build/vaults/misc",
"flat:contracts-vaults-mock": "sol-merger \"./contracts/vaults/mock/*.sol\" ./build/vaults/mock",
"flat:contracts-vaults-strategies": "sol-merger \"./contracts/vaults/v2/strategies/*.sol\" ./build/vaults/v2/strategies"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valuedefi/vaults.git"
},
"bugs": {
"url": "https://github.com/valuedefi/vaults/issues"
},
"homepage": "https://github.com/valuedefi/vaults#readme",
"devDependencies": {
"hardhat": "^2.0.3",
"ethers": "^5.0.19",
"typechain": "^3.0.0",
"hardhat-typechain": "^0.3.3",
"@typechain/ethers-v5": "^2.0.0",
"hardhat-deploy": "^0.7.0-beta.28",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"@nomiclabs/hardhat-vyper": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"@ethereum-waffle/chai": "^3.0.2",
"bignumber.js": "^9.0.1",
"solidity-coverage": "^0.7.11",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@openzeppelin/contracts": "^3.2.0",
"dotenv": "^8.2.0"
},
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^3.0.0"
}
}