-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
{
"name": "kittiefight",
"version": "0.0.1",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"truffle": "truffle",
"compile": "truffle compile",
"test": "truffle test ./test/GameManager2.test.js",
"local-chain": "ganache-cli --port 8544 --gasPrice 1000000000 -a 50 --gasLimit 7992148 --networkId 999 -e 100000",
"big-chain": "ganache-cli --port 8544 -l 0x1fffffffffffff -a 50 --networkId 999 --allowUnlimitedContractSize -e 100000",
"lint": "solhint ./contracts/*.sol",
"coverage": "solidity-coverage",
"jsdeployer": "npx light-server -s . -p 8080 --no-reload -o /jsdeployer/execute.html"
},
"engines": {
"node": ">=8.9.4"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/kittiefight/kittieFIGHTProject.git"
},
"author": "SuperDAO",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/kittiefight/kittieFIGHTProject/issues"
},
"homepage": "https://gitlab.com/kittiefight/kittieFIGHTProject#README",
"devDependencies": {
"bignumber.js": "^9.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"dotenv": "^8.0.0",
"edit-json-file": "^1.4.0",
"eth-gas-reporter": "0.2.17",
"ganache-cli": "^6.1.3",
"light-server": "^2.8.0",
"solc": "^0.5.6",
"solhint": "^1.1.10",
"solidity-coverage": "^0.4.15",
"truffle": "^5.0.10",
"truffle-hdwallet-provider": "^1.0.16",
"web3": "^1.0.0-beta.51",
"webpack": "^4.0.0"
},
"dependencies": {
"truffle-contract-size": "^2.0.0"
}
}