-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.65 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
{
"name": "shwop",
"version": "1.0.0",
"description": "Shwop Tools",
"main": "truffle.js",
"repository": "https://github.com/HarryR/shwop.git",
"author": "shwop@midnight-labs.org.com",
"license": "LGPL-3.0+",
"dependencies": {
"babel-preset-node6": "^11.0.0",
"solc": "^0.4.24"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ganache-cli": "^6.1.3",
"json-bigint-string": "^1.0.0",
"solidity-coverage": "^0.5.4",
"solhint": "^1.1.10",
"truffle": "^4.1.11",
"web3-eth-abi": "^1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.34"
},
"scripts": {
"testrpc": "ganache-cli --gasLimit 0xFFFFFFF --gasPrice 1 --network-id 1234 --deterministic grape crisp enroll avoid satoshi picnic term dice gown grocery situate depart",
"testrpca": "ganache-cli --port 8545 --gasLimit 0xFFFFFFF --gasPrice 1 --networkId 1234 --deterministic grape crisp enroll avoid satoshi picnic term dice gown grocery situate depart",
"testrpcb": "ganache-cli --port 8546 --gasLimit 0xFFFFFFF --gasPrice 1 --networkId 5678 --deterministic grape crisp enroll avoid satoshi picnic term dice gown grocery situate depart",
"compile": "truffle compile",
"deploy": "truffle deploy",
"deploya": "truffle deploy --network testrpca",
"deployb": "truffle deploy --network testrpcb",
"test": "truffle test",
"coverage": "solidity-coverage",
"lint": "solhint contracts/**/*.sol"
}
}