-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "token-custody-contract",
"version": "0.1.0",
"description": "Ethereum based smart contracts to swap tokens",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"migrate:local": "truffle migrate",
"migrate:kovan": "truffle migrate --network=kovan --reset",
"migrate:mainnet": "truffle migrate --network=mainnet --reset",
"flatten-proxy": "truffle-flattener contracts/CustodianProxy.sol >> CustodianProxy.sol",
"flatten-logic": "truffle-flattener contracts/Custodian.sol >> Custodian.sol",
"ganache-cli": "node_modules/.bin/ganache-cli -i 15 --gasLimit 10000000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/satyamakgec/token-custody-contract.git"
},
"keywords": [
"Smart",
"Contract",
"ERC20",
"Swap"
],
"author": "Satyam Agrawal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/satyamakgec/token-custody-contract/issues"
},
"homepage": "https://github.com/satyamakgec/token-custody-contract#readme",
"devDependencies": {
"ganache-cli": "^6.12.1",
"truffle-flattener": "^1.5.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"openzeppelin-solidity": "^3.2.0",
"truffle": "^5.1.51",
"truffle-hdwallet-provider": "^1.0.17",
"web3-provider-engine": "^16.0.1"
}
}