forked from bitbankinc/exchangeDepositContract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.17 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
{
"name": "exchangeDepositContract",
"version": "0.0.1",
"description": "A deposit contract for exchanges",
"scripts": {
"build": "hardhat compile",
"coverage": "npm run coverage:run && npm run coverage:check",
"coverage:check": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"coverage:run": "hardhat coverage",
"deploy:mainnet": "hardhat deploy --network mainnet",
"deploy-proxy:mainnet": "hardhat deploy-proxy --network mainnet",
"deploy:ropsten": "hardhat deploy --network ropsten",
"deploy-proxy:ropsten": "hardhat deploy-proxy --network ropsten",
"deploy:localhost": "hardhat deploy --network localhost",
"deploy-proxy:localhost": "hardhat deploy-proxy --network localhost",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "solhint -c ./.solhint.json './contracts/**/*.sol'",
"prepare": "hardhat clean && npm run build",
"prettier": "prettier '{,!(coverage|example)/**/}*.{js,ts,sol}' --bracket-spacing --single-quote --trailing-comma=all",
"test": "hardhat test",
"verify:ExchangeDeposit": "node ./bin/verifyContract.js ExchangeDeposit",
"verify:ProxyFactory": "node ./bin/verifyContract.js ProxyFactory"
},
"keywords": [
"exchange",
"solidity",
"contract",
"deposits"
],
"author": "Jonathan Underwood",
"license": "MIT",
"files": [
"contracts/ExchangeDeposit.sol",
"contracts/ProxyFactory.sol",
"artifacts/contracts/ExchangeDeposit.sol/ExchangeDeposit.json",
"artifacts/contracts/ProxyFactory.sol/ProxyFactory.json"
],
"dependencies": {
"@openzeppelin/contracts": "3.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"chai": "^4.2.0",
"ethers": "^5.0.19",
"hardhat": "^2.0.3",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"rlp": "^2.2.6",
"solc": "0.6.11",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.12",
"web3": "^1.3.0"
}
}