forked from yieldprotocol/yield-utils-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "@yield-protocol/utils-v2",
"version": "2.2.20",
"description": "Yield v2 utility contracts",
"author": "Yield Inc.",
"files": [
"contracts",
"!contracts/mocks",
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"test:deploy": "hardhat deploy --tags DeployTest",
"coverage": "hardhat coverage",
"lint:sol": "solhint -f table contracts/*.sol",
"lint:ts": "prettier ./test/*.ts --check",
"lint:ts:fix": "prettier ./test/*.ts --write",
"prepublishOnly": "npx tsdx build --tsconfig ./tsconfig-publish.json"
},
"devDependencies": {
"@ethersproject/providers": "^5.0.15",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"chai": "4.2.0",
"erc3156": "^0.4.8",
"ethereum-waffle": "^3.2.2",
"hardhat": "^2.0.8",
"hardhat-abi-exporter": "^2.0.3",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-typechain": "^0.3.4",
"mocha": "^7.1.0",
"prettier": "^2.0.5",
"solhint": "^3.3.3",
"solidity-coverage": "^0.7.14",
"ts-node": "^8.10.2",
"tsdx": "^0.14.1",
"typechain": "^4.0.1",
"typechain-target-ethers-v5": "^5.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"ethereumjs-util": "^7.0.8",
"ethers": "^5.0.7"
},
"license": "GPL-3.0-or-later"
}