-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.79 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "circom-helper",
"version": "0.3.5",
"description": "A convenient way for developers to compile, cache, and execute circom circuits, as well as to generate proofs.",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "tsc",
"serve": "node ./build/index.js -c ./config.example.json -b ./compiled/ -p 9000 -nc",
"test-server": "jest --testPathPattern=ts/__tests__/Server.test.ts",
"test-server-debug": "node --inspect-brk ./node_modules/.bin/jest --testPathPattern=ts/__tests__/Server.test.ts",
"test-snarks": "jest --testPathPattern=__tests__/snarks.test.ts",
"test-snarks-debug": "node --inspect-brk ./node_modules/.bin/jest --testPathPattern=ts/__tests__/snarks.test.ts"
},
"bin": {
"circom-helper": "build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weijiekoh/circom-helper.git"
},
"keywords": [
"snarkjs",
"circom",
"zkutil"
],
"author": "Koh Wei Jie",
"license": "MIT",
"bugs": {
"url": "https://github.com/weijiekoh/circom-helper/issues"
},
"homepage": "https://github.com/weijiekoh/circom-helper#readme",
"_moduleAliases": {
"@circom-helper": "."
},
"dependencies": {
"@iden3/binfileutils": "0.0.7",
"ajv": "6.10.0",
"argparse": "^2.0.1",
"axios": "^0.21.0",
"better-sqlite3": "^7.4.3",
"circomlib": "^2.0.0",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.2.0",
"module-alias": "^2.2.0",
"n-readlines": "^1.0.1",
"shelljs": "^0.8.4",
"snarkjs": "0.3.60",
"verror": "^1.10.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"ffjavascript": "^0.2.56",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}