forked from WETH10/WETH10
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 loc) · 1.72 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
{
"name": "WETH10",
"version": "10.0.0",
"description": "Wrapped Ether with ERC2612 and Flash Minting",
"main": "README.md",
"directories": {
"test": "test"
},
"scripts": {
"build": "hardhat compile",
"test": "hardhat test test/*.js",
"coverage": "hardhat coverage --network coverage --temp build --testfiles 'test/*.js'",
"lint:js": "prettier ./test/**/*.js --write",
"lint:sol": "solhint -f table contracts/**/*.sol",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"kovan:deploy": "hardhat --network kovan deploy",
"goerli:deploy": "hardhat --network goerli deploy",
"ropsten:deploy": "hardhat --network ropsten deploy",
"mainnet:deploy": "hardhat --network mainnet deploy",
"beresheet:deploy": "hardhat --network beresheet deploy",
"edgeware:deploy": "hardhat --network edgeware deploy"
},
"author": "",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.3.0",
"@types/mocha": "^8.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"erc3156": "^0.4.7",
"eth-permit": "^0.1.8",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.0.3",
"ethers": "^5.1.3",
"ganache-time-traveler": "^1.0.14",
"hardhat": "2.1.1",
"hardhat-deploy": "^0.7.0-beta.39",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^7.1.0",
"prettier": "^2.0.5",
"solhint": "^3.2.0",
"solidity-coverage": "0.7.14",
"truffle-flattener": "^1.5.0"
}
}