snarkjs/package.json

45 lines
849 B
JSON
Raw Normal View History

2018-08-09 09:16:34 +03:00
{
2018-10-21 19:24:49 +03:00
"name": "snarkjs",
2020-04-18 21:21:41 +03:00
"version": "0.1.28",
2018-09-10 12:53:09 +03:00
"description": "zkSNARKs implementation in JavaScript",
2018-08-09 09:16:34 +03:00
"main": "index.js",
"scripts": {
2018-09-05 05:56:49 +03:00
"test": "mocha"
2018-08-09 09:16:34 +03:00
},
2018-10-21 19:24:49 +03:00
"bin": {
"snarkjs": "cli.js"
},
"directories": {
"templates": "templates"
},
2018-08-09 09:16:34 +03:00
"keywords": [
"zksnark",
"zcash",
"ethereum",
"zero",
"knowlage",
"cryptography",
"circuit"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
2018-09-05 05:56:49 +03:00
"repository": {
"type": "git",
2018-10-21 19:24:49 +03:00
"url": "https://github.com/iden3/snarkjs.git"
2018-09-05 05:56:49 +03:00
},
2018-08-09 09:16:34 +03:00
"dependencies": {
2019-04-12 15:15:06 +03:00
"chai": "^4.2.0",
2020-04-18 21:48:34 +03:00
"circom_runtime": "0.0.5",
2019-02-05 22:22:55 +03:00
"escape-string-regexp": "^1.0.5",
2020-04-18 21:21:16 +03:00
"ffjavascript": "0.1.0",
2020-03-27 16:16:50 +03:00
"keccak": "^3.0.0",
2020-04-18 21:21:16 +03:00
"r1csfile": "0.0.4",
2019-04-12 15:15:06 +03:00
"yargs": "^12.0.5"
2018-08-09 09:16:34 +03:00
},
"devDependencies": {
2020-03-27 00:44:32 +03:00
"eslint": "^6.8.0",
2020-02-24 14:45:44 +03:00
"lodash": "^4.17.15",
2020-03-27 00:44:32 +03:00
"mocha": "^7.1.1"
2018-08-09 09:16:34 +03:00
}
}