-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
{
"name": "sv-light-smart-contracts",
"version": "2.0.1",
"description": "All SvLight Eth Smart Contracts",
"main": "index.js",
"repository": "git@github.com:secure-vote/sv-light-smart-contracts.git",
"author": "Max Kaye <max@secure.vote>",
"license": "MIT",
"private": false,
"dependencies": {
"async-parallel": "^1.2.3",
"bech32": "^1.1.3",
"bs58": "^4.0.1",
"colors": "^1.2.1",
"coveralls": "^3.0.1",
"enquirer": "^1.0.3",
"eth-ens-namehash": "^2.0.8",
"eth-lib": "^0.2.8",
"ethereumjs-testrpc": "^6.0.3",
"ethereumjs-util": "^5.1.5",
"ganache-cli": "^6.1.6",
"graceful-fs": "^4.1.11",
"jq": "^1.7.2",
"js-nacl": "^1.2.2",
"node-clip": "^0.1.1",
"prompt": "^1.0.0",
"prompt-confirm": "^1.2.0",
"ramda": "^0.25.0",
"rlp": "^2.1.0",
"sanctuary": "^0.14.1",
"solidity-coverage": "^0.5.1",
"solium": "^1.1.6",
"sv-lib": "^0.2.1",
"truffle": "trufflesuite/truffle",
"tweetnacl": "^1.0.0",
"web3": "^1.0.0-beta.33",
"web3-eth-contract": "^1.0.0-beta.35",
"yargs": "^11.0.0"
},
"scripts": {
"test": "./doTests.sh",
"test-watch": "reflex truffle test",
"test-watch-s": "reflex -s truffle test",
"reset-test": "truffle migrate --reset --compile-all",
"debug": "truffle debug",
"deploy": "node ./bin/deploy.js",
"cli": "node -i ./bin/contractCli.js --name",
"truffle-compile": "truffle compile --all",
"compile-sv-light": "./compileAllSvLight.sh",
"compile-ens": "for f in $(ls ./ens | grep sol); do ./bin/compile.sh -d ens -c $f -o _distEns; done",
"coverage": "RUN_ALL_TESTS=true solidity-coverage",
"c": "./bin/compile.sh -c",
"diff": "git diff -- . ':(exclude)_solDist/*'",
"manage-nodes:dev": "scripts/manage-nodes.sh",
"test:geth": "export GETH_CLIENT=geth; yarn manage-nodes:dev && truffle test --network rpc",
"ganache": "ganache-cli -l 10000000 -g 1 -i 15 -e 100000 -a 20"
}
}