-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
32 lines (32 loc) · 953 Bytes
/
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
{
"name": "thundercore-erc20",
"engines": {
"node": ">=8.0.0 <=10.16.0"
},
"version": "1.0.0",
"description": "ThunderCore ERC 20 token example",
"main": "index.js",
"repository": "[email protected]:LucienLee/thundercore-erc20.git",
"author": "Lucien Lee <[email protected]>",
"license": "MIT",
"keywords": [
"ethereum",
"thundercore",
"smart contract"
],
"dependencies": {
"openzeppelin-solidity": "^2.3.0",
"truffle": "^5.0.24",
"truffle-hdwallet-provider": "^1.0.10"
},
"scripts": {
"compile": "truffle compile",
"compile:testnet": "truffle compile --network thunder-testnet",
"compile:mainnet": "truffle compile --network thunder-mainnet",
"migrate": "truffle migrate",
"migrate:testnet": "truffle migrate --network thunder-testnet",
"migrate:mainnet": "truffle migrate --network thunder-mainnet",
"test": "truffle test",
"clean": "rm -rf build/contracts"
}
}