-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 KB
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
{
"name": "tontoken",
"version": "1.0.0",
"description": "A tradable ERC20 token that raises funds for community-selected organizations as part of its protocol.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"compile:all": "truffle compile --all",
"deploy:ropsten": "node ./scripts/deploy.js ropsten",
"deploy:mainnet": "node ./scripts/deploy.js mainnet",
"migrate:develop": "truffle migrate --network develop",
"migrate:ganache": "truffle migrate --network ganacheDevelopment",
"migrate:develop:reset": "truffle migrate --reset --network develop",
"migrate:ganache:reset": "truffle migrate --reset --network ganacheDevelopment",
"start": "truffle develop",
"console:ganache": "truffle console --network ganacheDevelopment",
"test": "truffle test --network develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModernExodus/tontoken.git"
},
"keywords": [
"ethereum",
"erc20",
"erc20-token",
"blockchain",
"truffle",
"solidity",
"charitable"
],
"author": "John Washburn",
"license": "MIT",
"bugs": {
"url": "https://github.com/ModernExodus/tontoken/issues"
},
"homepage": "https://github.com/ModernExodus/tontoken#readme",
"devDependencies": {
"@ethereumjs/tx": "^3.3.0",
"@truffle/hdwallet-provider": "^1.5.0",
"truffle": "^5.4.2",
"web3": "^1.5.2"
}
}