snarkjs/package.json

64 lines
1.6 KiB
JSON
Raw Normal View History

2018-08-09 08:16:34 +02:00
{
2018-10-21 18:24:49 +02:00
"name": "snarkjs",
2020-07-11 10:31:52 +02:00
"type": "module",
2020-08-03 22:05:10 +02:00
"version": "0.3.12",
2018-09-10 11:53:09 +02:00
"description": "zkSNARKs implementation in JavaScript",
2020-07-11 10:31:52 +02:00
"main": "./build/main.cjs",
"module": "./main.js",
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
},
2018-08-09 08:16:34 +02:00
"scripts": {
2020-07-11 10:31:52 +02:00
"test": "mocha",
"build": "rollup -c config/rollup.cjs.config.js",
"buildcli": "rollup -c config/rollup.cli.config.js",
2020-07-13 07:21:03 +02:00
"buildiife": "BROWSER=true rollup -c config/rollup.iife.config.js",
"buildiifemin": "BROWSER=true rollup -c config/rollup.iife_min.config.js"
2018-08-09 08:16:34 +02:00
},
2018-10-21 18:24:49 +02:00
"bin": {
2020-07-13 07:21:03 +02:00
"snarkjs": "build/cli.cjs"
2018-10-21 18:24:49 +02:00
},
"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-07-13 08:10:55 +02:00
"circom_runtime": "0.0.9",
2020-07-29 09:08:09 +02:00
"fastfile": "0.0.12",
2020-07-13 08:10:55 +02:00
"ffjavascript": "0.2.4",
2020-03-27 14:16:50 +01:00
"keccak": "^3.0.0",
2020-07-11 10:31:52 +02:00
"logplease": "^1.2.15",
2020-07-13 08:10:55 +02:00
"r1csfile": "0.0.12",
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-07-11 10:31:52 +02:00
"mocha": "^7.1.1",
"rollup": "^2.20.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-ignore": "^1.0.6",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
2020-07-13 07:21:03 +02:00
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0"
2018-08-09 08:16:34 +02:00
}
}