-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "ion",
"version": "1.0.0",
"description": "Inter Operability Network",
"main": "truffle.js",
"repository": "https://github.com/clearmatics/ion.git",
"author": "[email protected]",
"license": "LGPL-3.0+",
"dependencies": {
"axios": "^0.21.1",
"bignumber.js": "^8.0.1",
"concat-stream": "^1.5.2",
"ethereumjs-block": "^2.0.0",
"ethereumjs-tx": "^1.3.5",
"lodash.template": "^4.5.0",
"merkle-patricia-tree": "^2.3.1",
"node-gyp": "^3.8.0",
"rlp": "^2.0.0",
"solc": "^0.5.12",
"solhint": "^1.1.10",
"truffle-assertions": "^0.9.2",
"underscore": "^1.12.1",
"web3-eth-accounts": "^1.0.0-beta.34",
"yargs-parser": "^5.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"ganache-cli": "^6.7.0",
"json-bigint-string": "^1.0.0",
"lodash": "^4.17.21",
"solidity-coverage": "^0.7.0",
"truffle": "^5.3.6",
"web3": "1.0.0-beta.33",
"web3-eth-abi": "^1.3.5",
"web3-utils": "1.0.0-beta.33"
},
"scripts": {
"testrpc": "ganache-cli --port 8545 --gasLimit 0xFFFFFFFFFFFFF --gasPrice 0 --defaultBalanceEther 99999999999 --networkId 1234",
"clirpc": "ganache-cli --port 8545 --gasLimit 0xFFFFFFFFFFFFF --gasPrice 0 --defaultBalanceEther 99999999999 --networkId 1234",
"compile": "truffle compile",
"deploy": "truffle deploy",
"test": "truffle test",
"debug": "truffle debug",
"coverage": "solidity-coverage",
"lint": "solhint contracts/**/*.sol",
"genbin": "solc --overwrite --bin ./contracts/*.sol -o abi",
"genabi": "solc --overwrite --abi ./contracts/*.sol -o abi"
}
}