snarkjs/package.json

35 lines
621 B
JSON
Raw Permalink Normal View History

2018-08-09 08:16:34 +02:00
{
2018-10-21 18:24:49 +02:00
"name": "snarkjs",
2019-09-15 10:49:33 +02:00
"version": "0.1.20",
2018-09-10 11:53:09 +02:00
"description": "zkSNARKs implementation in JavaScript",
2018-08-09 08:16:34 +02:00
"main": "index.js",
"scripts": {
"test": "node --test"
2018-08-09 08:16:34 +02:00
},
2018-10-21 18:24:49 +02:00
"bin": {
"snarkjs": "cli.js"
},
"directories": {
"templates": "templates"
},
2018-08-09 08:16:34 +02:00
"keywords": [
"zksnark",
"zcash",
"ethereum",
"zero",
"knowlage",
"cryptography",
"circuit"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
2018-09-05 04:56:49 +02:00
"repository": {
"type": "git",
2018-10-21 18:24:49 +02:00
"url": "https://github.com/iden3/snarkjs.git"
2018-09-05 04:56:49 +02:00
},
2018-08-09 08:16:34 +02:00
"dependencies": {
"big-integer": "1.6.43",
"@noble/hashes": "1.6.1"
2018-08-09 08:16:34 +02:00
}
}