-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 2.25 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
{
"name": "unirep",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run installZkutil && npm run buildVerifyEpochKeySnark && npm run buildUserStateTransitionSnark && npm run buildProveReputationSnark",
"installZkutil": "./scripts/installZkutil.sh",
"buildVerifyEpochKeySnark": "./scripts/buildVerifyEpochKeySnark.sh",
"buildUserStateTransitionSnark": "./scripts/buildUserStateTransitionSnark.sh",
"buildProveReputationSnark": "./scripts/buildProveReputationSnark.sh",
"test-cli": "./scripts/testCLI.sh",
"test": "npx hardhat compile && npx ts-node scripts/buildPoseidon.ts && npm run contractUnitTests && npm run circuitUnitTests && npm run integrationTest",
"contractUnitTests": "NODE_OPTIONS=--max-old-space-size=4096 npx hardhat test --no-compile $(find test/contracts -name '*.ts')",
"circuitUnitTests": "NODE_OPTIONS=--max-old-space-size=4096 npx hardhat test --no-compile $(find test/circuits -name '*.ts')",
"integrationTest": "NODE_OPTIONS=--max-old-space-size=4096 npx hardhat test --no-compile $(find test/integration -name '*.ts')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NIC619/UniRep.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NIC619/UniRep/issues"
},
"homepage": "https://github.com/NIC619/UniRep#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"chai": "^4.2.0",
"ethereum-waffle": "^3.3.0",
"hardhat": "^2.3.0",
"keyv": "^4.0.3",
"ts-node": "^9.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"base64url": "^3.0.1",
"circom": "^0.5.38",
"circomlib": "^0.5.1",
"ethers": "^5.2.0",
"libsemaphore": "^1.0.15",
"maci-config": "^0.7.4",
"maci-crypto": "^0.7.4",
"n-readlines": "^1.0.1",
"prompt-async": "^0.9.9",
"shelljs": "^0.8.3",
"snarkjs": "^0.3.59",
"typescript": "^4.0.5"
}
}