-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "@aragon/govern-contract-utils",
"version": "1.0.0-beta.12",
"description": "Contract utils used Govern smart contract packages",
"main": "index.js",
"repository": "https://github.com/aragon/govern",
"author": "Aragon Association <[email protected]>",
"contributors": [
"Jorge Izquierdo <[email protected]>"
],
"files": [
"/artifacts",
"/contracts"
],
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.1.1",
"hardhat-typechain": "^0.3.3",
"solidity-coverage": "^0.7.15",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^4.0.0"
},
"scripts": {
"clean": "rm -rf artifacts cache typechain",
"compile": "hardhat compile --force",
"compile:cached": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage --temp artifacts",
"prepublishOnly": "yarn clean && yarn compile && yarn test"
}
}