-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 866 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 866 Bytes
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
{
"name": "circom-example",
"version": "0.1.0",
"description": "This repository contains example circuits written in the Circom language. The examples utilize `circomlibjs`, `circom_tester` and `snarkjs` libraries to demonstrate the implementation of zk-SNARK without requiring a trusted setup and installing the full `circom` binary.",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 60000 --reporter spec test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pisuthd/circom-example.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pisuthd/circom-example/issues"
},
"homepage": "https://github.com/pisuthd/circom-example#readme",
"dependencies": {
"chai": "^4.3.7",
"circom_tester": "^0.0.19",
"circomlibjs": "^0.1.7",
"mocha": "^10.2.0"
}
}