forked from ampleforth/ampleforth-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "cDOV",
"version": "0.0.1",
"description": "cDOV protocol smart contracts on Ethereum.",
"keywords": [
"ethereum",
"smart-contracts",
"solidity"
],
"homepage": "https://github.com/dovuofficial/cdov#readme",
"bugs": {
"url": "https://github.com/dovuofficial/cdovs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dovuofficial/cdov.git"
},
"license": "ISC",
"author": "[email protected]",
"scripts": {
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"profile": "REPORT_GAS=true yarn hardhat test test/unit/*.ts",
"coverage": "yarn hardhat coverage --testfiles 'test/unit/*.ts'",
"format": "yarn prettier --config .prettierrc --write '**/*.ts' 'contracts/**/*.sol'",
"lint": "yarn solhint 'contracts/**/*.sol'"
},
"pre-commit": [
"format",
"lint"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.4.3",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.0.6",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"solc": "0.4.24",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.13",
"stochasm": "^0.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"hardhat-gas-reporter": "^1.0.4",
"openzeppelin-eth": "2.0.2-standalone"
}
}