-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "designated-verifier-proof",
"version": "1.0.0",
"description": "Reusable component to add a designated verifier to your zk circom circuit. It means that the zk proof generated from your circuit cannot be verified by someonewho is not the designated verifier (identified by its ethereum public address)",
"main": "index.js",
"directories": {
"test": "mocha --max-old-space-size=4000"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enricobottazzi/designated-verifier-proof.git"
},
"keywords": [
"circom",
"zk",
"zkSNARK",
"designated-verifier-proof",
"cryptography"
],
"author": "Enrico Bottazzi (@enricobottazzi), Shrey Jain (@shreyjain13)",
"license": "MIT",
"bugs": {
"url": "https://github.com/enricobottazzi/designated-verifier-proof/issues"
},
"homepage": "https://github.com/enricobottazzi/designated-verifier-proof#readme",
"dependencies": {
"circom_tester": "^0.0.18",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"snarkjs": "^0.5.0"
}
}