-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "r1csfile",
"type": "module",
"exports": {
"import": "./src/r1csfile.js",
"require": "./build/main.cjs"
},
"version": "0.0.48",
"description": "r1cs file format parser",
"main": "./build/main.cjs",
"module": "./src/r1csfile.js",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "mocha --timeout 60000",
"build": "rollup -c rollup.cjs.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/r1csfile.git"
},
"keywords": [
"r1cs",
"circom",
"zero",
"knoledge",
"format",
"parser"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/r1csfile/issues"
},
"homepage": "https://github.com/iden3/r1csfile#readme",
"dependencies": {
"@iden3/bigarray": "0.0.2",
"@iden3/binfileutils": "0.0.12",
"fastfile": "0.0.20",
"ffjavascript": "0.3.0"
},
"devDependencies": {
"eslint": "^8.6.0",
"mocha": "^10.0.0",
"rollup": "^2.20.0"
}
}