-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 882 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 882 Bytes
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
{
"name": "@software-security-lab/chaum-pedersen",
"version": "1.1.2",
"description": "Simple and basic non-interactive version of original Chaum-Pedersen proof which is developed for educational purposes.",
"main": "chaum-pedersen.js",
"scripts": {
"test": "echo 'test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareSecurityLab/Chaum-Pedersen.git"
},
"keywords": [
"Chaum-Pedersen",
"NIZKP",
"Non-Interactive",
"Zero-Knowledge",
"Proof"
],
"author": "Golgolnia Milad",
"license": "ISC",
"bugs": {
"url": "https://github.com/SoftwareSecurityLab/Chaum-Pedersen/issues"
},
"homepage": "https://github.com/SoftwareSecurityLab/Chaum-Pedersen#readme",
"dependencies": {
"basic_simple_elgamal": "^2.4.4",
"big-integer": "^1.6.48",
"debug": "^4.3.1",
"js-sha3": "^0.8.0"
}
}