-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.96 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
{
"name": "clovers-contracts",
"version": "2.2.0",
"description": "Clovers Network contracts",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"testnet": "npx ganache-cli -i 1337 -m='result chalk culture device mouse post focus marble nurse fire gun venue'",
"compile": "yarn compile-old && yarn compile-new && yarn networks-inject",
"compile-old": "buidler compile --config buidler.config.4.js",
"compile-new": "buidler compile",
"compileAndTest": "yarn compile && truffle test",
"test": "buidler test --no-compile test/*.test.js",
"build": "buidler buildIndex",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"pub": "npm publish",
"networks-extract": "node extract_network_info.js",
"networks-inject": "node inject_network_info.js",
"networks-reset": "mkdir -p build/contracts && npx truffle networks --clean && npm run networks-inject"
},
"author": "Billy Rennekamp <billy.rennekamp@gmail.com>",
"license": "MIT",
"devDependencies": {
"@gnosis.pm/util-contracts": "github:okwme/util-contracts#patch-1",
"@nomiclabs/buidler": "^1.0.1",
"@nomiclabs/buidler-etherscan": "^1.0.1",
"@nomiclabs/buidler-solhint": "^1.0.1",
"@nomiclabs/buidler-truffle4": "^1.0.1",
"@nomiclabs/buidler-truffle5": "^1.0.1",
"@nomiclabs/buidler-web3": "^1.0.1",
"@nomiclabs/buidler-web3-legacy": "^1.0.1",
"@openzeppelin/contracts": "v2.3.0",
"@truffle/artifactor": "^4.0.33",
"bancor-contracts": "github:bancorprotocol/contracts#973c9919e146a1b61297632f3253ee1c891462a9",
"bignumber.js": "^9.0.0",
"clovers-reversi": "^1.0.16",
"dotenv": "^6.0.0",
"ethers": "^4.0.37",
"ganache-cli": "6.5.0",
"truffle": "^4.1.13",
"truffle-flattener": "^1.4.0",
"truffle-hdwallet-provider": "^0.0.6",
"web3": "^1.2.1",
"web3-utils": "^1.0.0-beta.33",
"zeppelin-solidity": "1.11.0"
},
"dependencies": {}
}