forked from hermeznetwork/circuits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@hermeznetwork/circuits",
"version": "0.0.1",
"description": "zkSNARK circuit implementing hermez protocol",
"scripts": {
"setup": "npm i",
"eslint": "npx eslint test/** tools/*.js tools/helpers/*.js",
"test": "npx mocha --max-old-space-size=4096 ./test/*.test.js && npx mocha ./test/lib/*.test.js"
},
"keywords": [
"hermez",
"rollup",
"blockchain",
"scalability",
"ethereum",
"zksnarks",
"zero",
"knowledge",
"circom"
],
"author": "HermezDAO",
"license": "AGPL-3.0",
"dependencies": {
"@hermeznetwork/commonjs": "^0.3.3",
"circom": "^0.5.45",
"circom_runtime": "^0.1.9",
"circomlib": "^0.5.2",
"ffiasm": "^0.1.1",
"ffjavascript": "^0.2.33",
"snarkjs": "^0.3.59",
"web3-utils": "^1.2.11"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.1.1"
}
}