forked from privacy-scaling-explorations/maci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 4.17 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
59
60
61
62
63
64
65
66
67
{
"name": "maci-circuits",
"version": "1.1.2",
"description": "zk-SNARK circuits for MACI",
"main": "build/index.js",
"scripts": {
"circom-helper": "circom-helper -c ./circomHelperConfig.json -b ./build/test/ -p 9001 -nc",
"build-test-circuits": "NODE_OPTIONS=--max-old-space-size=16384 circom-helper -c ./circomHelperConfig.json -y -nc -b ./build/test/ -p 9001 -m 16384 -s 1048576",
"watch": "tsc --watch",
"build": "tsc",
"test": "jest",
"test-quinGenPath": "jest QuinGeneratePathIndices.test.ts",
"test-quinGenPath-debug": "node --inspect-brk ./node_modules/.bin/jest QuinGeneratePathIndices.test.ts",
"test-hasher": "jest Hasher.test.ts",
"test-hasher-debug": "node --inspect-brk ./node_modules/.bin/jest Hasher.test.ts",
"test-unpackElement": "jest UnpackElement.test.ts",
"test-unpackElement-debug": "node --inspect-brk ./node_modules/.bin/jest UnpackElement.test.ts",
"test-quadVoteTally": "NODE_OPTIONS=--max-old-space-size=4096 jest QuadVoteTally.test.ts",
"test-quadVoteTally-debug": "NODE_OPTIONS=--max-old-space-size=4096 node --inspect-brk ./node_modules/.bin/jest QuadVoteTally.test.ts",
"test-slAndBallotTransformer": "jest StateLeafAndBallotTransformer.test.ts",
"test-slAndBallotTransformer-debug": "node --inspect-brk ./node_modules/.bin/jest StateLeafAndBallotTransformer.test.ts",
"test-messageToCommand": "jest MessageToCommand.test.ts",
"test-messageToCommand-debug": "node --inspect-brk ./node_modules/.bin/jest MessageToCommand.test.ts",
"test-messageValidator": "jest MessageValidator.test.ts",
"test-messageValidator-debug": "node --inspect-brk ./node_modules/.bin/jest MessageValidator.test.ts",
"test-verifySignature": "jest VerifySignature.test.ts",
"test-verifySignature-debug": "node --inspect-brk ./node_modules/.bin/jest VerifySignature.test.ts",
"test-splicer": "jest Splicer.test.ts",
"test-splicer-debug": "node --inspect-brk ./node_modules/.bin/jest Splicer.test.ts",
"test-quinSelector": "jest QuinSelector.test.ts",
"test-quinSelector-debug": "node --inspect-brk ./node_modules/.bin/jest QuinSelector.test.ts",
"test-quinBatchLeavesExists": "jest QuinBatchLeavesExists.test.ts",
"test-quinBatchLeavesExists-debug": "node --inspect-brk ./node_modules/.bin/jest QuinBatchLeavesExists.test.ts",
"test-ecdh": "jest Ecdh.test.ts",
"test-ecdh-debug": "node --inspect-brk ./node_modules/.bin/jest Ecdh.test.ts",
"test-privToPubKey": "jest PrivToPubKey.test.ts",
"test-privToPubKey-debug": "node --inspect-brk ./node_modules/.bin/jest PrivToPubKey.test.ts",
"test-decrypt": "jest Decrypt.test.ts",
"test-decrypt-debug": "node --inspect-brk ./node_modules/.bin/jest Decrypt.test.ts",
"test-calculateTotal": "jest CalculateTotal.test.ts",
"test-calculateTotal-debug": "node --inspect-brk ./node_modules/.bin/jest CalculateTotal.test.ts",
"test-processMessages": "NODE_OPTIONS=--max-old-space-size=4096 jest ts/__tests__/ProcessMessages.test.ts",
"test-processMessages-debug": "NODE_OPTIONS=--max-old-space-size=4096 node --inspect-brk ./node_modules/.bin/jest ts/__tests__/ProcessMessages.test.ts",
"test-tallyVotes": "NODE_OPTIONS=--max-old-space-size=4096 jest ts/__tests__/TallyVotes.test.ts",
"test-tallyVotes-debug": "NODE_OPTIONS=--max-old-space-size=4096 node --inspect-brk ./node_modules/.bin/jest ts/__tests__/TallyVotes.test.ts"
},
"dependencies": {
"argparse": "^2.0.1",
"circomlib": "https://github.com/weijiekoh/circomlib#ac85e82c1914d47789e2032fb11ceb2cfdd38a2b",
"shelljs": "^0.8.3",
"snarkjs": "^0.5.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"axios": "^1.1.3",
"circom-helper": "^0.3.0",
"jest": "^26.6.3",
"maci-core": "^1.1.2",
"maci-crypto": "^1.1.2",
"maci-domainobjs": "^1.1.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"gitHead": "f567a17293114ba2d5e89c711d00a9f4c197f070"
}