forked from aave/governance-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@aave/governance-v2",
"version": "1.0.0",
"description": "Aave Governance v2 smart contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/aave/governance-v2.git"
},
"homepage": "https://github.com/aave/governance-v2",
"files": [
"contracts",
"artifacts"
],
"scripts": {
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"compile": "SKIP_LOAD=true hardhat compile",
"compile:force": "npm run compile -- --force",
"compile:force:quiet": "npm run compile:force -- --quiet",
"test": "npm run compile:force:quiet && TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"coverage": "npm run compile && npx hardhat coverage --testfiles test/emptyrun.coverage.ts && rm -rf coverage.json coverage/ && npx hardhat coverage --testfiles test/governance.spec.ts",
"dev:prettier": "prettier --write .",
"ci:test": "npm run compile:force:quiet && npm run test",
"ci:clean": "rm -rf ./artifacts ./cache ./types ./coverage*",
"migrate:dev": "npm run compile:force:quiet && hardhat migrate:dev",
"types-gen": "hardhat typechain",
"prepublishOnly": "npm run compile"
},
"dependencies": {
"@aave/aave-token": "^1.0.4"
},
"devDependencies": {
"@nomiclabs/buidler-waffle": "2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "3.1.0",
"@typechain/ethers-v4": "1.0.0",
"@typechain/ethers-v5": "^1.0.0",
"@typechain/truffle-v4": "2.0.2",
"@typechain/truffle-v5": "2.0.2",
"@typechain/web3-v1": "1.0.0",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"bignumber.js": "9.0.0",
"buidler-gas-reporter": "^0.1.4",
"buidler-typechain": "0.1.1",
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"chai-bn": "^0.2.1",
"dotenv": "^8.2.0",
"eth-sig-util": "2.5.3",
"ethereum-waffle": "3.0.2",
"ethereumjs-util": "7.0.2",
"ethers": "5.0.8",
"globby": "^11.0.1",
"hardhat": "^2.2.1",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-typechain": "^0.3.5",
"husky": "^4.2.5",
"lowdb": "1.0.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.53",
"pretty-quick": "^2.0.1",
"solidity-coverage": "^0.7.16",
"tmp-promise": "^3.0.2",
"ts-generator": "0.0.8",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "2.0.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Aave",
"contributors": [
{
"name": "Ernesto Boado",
"email": "[email protected]"
},
{
"name": "Emilio Frangella",
"email": "[email protected]"
},
{
"name": "Andrey Kozlov",
"email": "[email protected]"
},
{
"name": "David Racero",
"email": "[email protected]"
},
{
"name": "Hadrien Charlanes",
"email": "[email protected]"
}
],
"license": "AGPLv3"
}