snarkjs/package.json

45 lines
879 B
JSON
Raw Normal View History

2018-08-09 08:16:34 +02:00
{
2018-10-21 18:24:49 +02:00
"name": "snarkjs",
2020-04-19 19:31:23 +02:00
"version": "0.1.31",
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": {
2018-09-05 04:56:49 +02:00
"test": "mocha"
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": {
2020-05-27 21:02:25 +02:00
"blake2b-wasm": "https://github.com/jbaylina/blake2b-wasm.git",
2020-04-19 19:31:12 +02:00
"circom_runtime": "0.0.6",
2020-04-18 20:21:16 +02:00
"ffjavascript": "0.1.0",
2020-03-27 14:16:50 +01:00
"keccak": "^3.0.0",
2020-04-19 18:31:29 +02:00
"r1csfile": "0.0.5",
2019-04-12 14:15:06 +02:00
"yargs": "^12.0.5"
2018-08-09 08:16:34 +02:00
},
"devDependencies": {
2020-05-27 21:02:25 +02:00
"chai": "^4.2.0",
2020-03-26 22:44:32 +01:00
"eslint": "^6.8.0",
2020-02-24 12:45:44 +01:00
"lodash": "^4.17.15",
2020-03-26 22:44:32 +01:00
"mocha": "^7.1.1"
2018-08-09 08:16:34 +02:00
}
}