-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "erc20-token",
"version": "0.1.0",
"description": "ERC20 Token",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"migrate:local": "truffle migrate",
"migrate:ropsten": "truffle migrate --network=ropsten --reset",
"migrate:mainnet": "truffle migrate --network=mainnet --reset",
"flatten": "truffle-flattener contracts/SPAMToken.sol >> SPAMToken.sol",
"ganache-cli": "node_modules/.bin/ganache-cli -i 15 --gasLimit 10000000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/satyamakgec/deflationary-token.git"
},
"keywords": [
"ERC20",
"smart",
"contract",
"Ethereum",
"Mintable",
"Burnable"
],
"author": "Satyam Agrawal",
"license": "MIT",
"bugs": {
"url": "https://github.com/satyamakgec/deflationary-token/issues"
},
"homepage": "https://github.com/satyamakgec/deflationary-token#readme",
"dependencies": {
"dotenv": "^8.2.0",
"openzeppelin-solidity": "^3.2.0",
"truffle-hdwallet-provider": "^1.0.17",
"web3-provider-engine": "^16.0.1"
},
"devDependencies": {
"ganache-cli": "^6.12.1",
"truffle": "^5.1.50",
"truffle-flattener": "^1.5.0",
"web3": "^1.3.0"
}
}