snarkjs/package.json

34 lines
628 B
JSON
Raw Normal View History

2018-08-09 08:16:34 +02:00
{
"name": "zksnark",
"version": "0.0.1",
"description": "zkSnark implementation in javascript",
"main": "index.js",
"scripts": {
2018-09-05 04:56:49 +02:00
"test": "mocha"
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",
"url": "git+https://github.com/iden3/zksnark.git"
},
2018-08-09 08:16:34 +02:00
"dependencies": {
2018-08-10 23:57:35 +02:00
"big-integer": "^1.6.34",
2018-08-12 20:37:43 +02:00
"chai": "^4.1.2",
2018-08-09 08:16:34 +02:00
"eslint": "^5.3.0"
},
"devDependencies": {
2018-09-05 04:56:49 +02:00
"eslint-plugin-mocha": "^5.1.0",
"mocha": "^5.2.0"
2018-08-09 08:16:34 +02:00
}
}