-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (60 loc) · 2.26 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
61
62
63
64
{
"name": "staking-contracts",
"version": "1.0.0",
"description": "staking pool with users assets management",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/oikos-cash/staking-contracts.git"
},
"scripts": {
"test": "run-s test:*",
"test:contracts": "rm -rf ./build/ && truffle test ./script/contracts.test.js",
"test:contracts:report": "rm -rf ./build/ && truffle test ./script/contracts.test.js --report",
"test:coverage": "rm -rf ./build/ && truffle run coverage --file ./script/contracts.test.js",
"compile:truffle": "rm -rf ./build/ && truffle compile",
"compile:tronbox": "rm -rf ./build/ && tronbox compile",
"lint": "run-s lint:*",
"lint:js": "eslint . --max-warnings=0 --report-unused-disable-directives",
"lint:jsFix": "eslint . --max-warnings=0 --report-unused-disable-directives --fix",
"lint:sol": "solium -d contracts/ ",
"lint:solFix": "solium -d contracts/ --fix",
"deploy:shasta": "rm -rf ./build/ && tronbox deploy --reset --network shasta --deploy",
"deploy:pool:shasta": "rm -rf ./build/ && tronbox deploy --reset --network shasta --deploySP",
"upgrade:pool:shasta": "rm -rf ./build/ && tronbox deploy --reset --network shasta --upgradeSP",
"deploy:mainnet": "rm -rf ./build/ && tronbox deploy --reset --network mainnet --deploy",
"deploy:pool:mainnet": "rm -rf ./build/ && tronbox deploy --reset --network mainnet --deploySP",
"upgrade:pool:mainnet": "rm -rf ./build/ && tronbox deploy --reset --network mainnet --upgradeSP",
"console:shasta": "tronbox console --network shasta",
"console:mainnet": "tronbox console --network mainnet"
},
"keywords": [
"OIKOS",
"OKS",
"Tron",
"Solidity",
"Blockchain"
],
"author": "OIKOS-CASH",
"license": "MIT",
"devDependencies": {
"@oikos/oikos": "^0.4.4",
"@oikos/swap": "^0.7.7",
"@openzeppelin/test-helpers": "^0.5.6",
"babel-eslint": "^10.1.0",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eth-gas-reporter": "^0.2.17",
"npm-run-all": "^4.1.5",
"solidity-coverage": "^0.7.9",
"tronbox": "^2.7.13",
"tronweb": "^2.10.2",
"truffle": "^5.1.36"
},
"dependencies": {
"solium": "^1.2.5"
}
}