forked from iden3/ffjavascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 997 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 997 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "ffjavascript",
"type": "module",
"version": "0.2.57",
"description": "Finite Field Library in Javascript",
"main": "./build/main.cjs",
"module": "./main.js",
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
},
"scripts": {
"test": "mocha",
"build": "rollup -c rollup.cjs.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/iden3/ffjavascript.git"
},
"keywords": [
"Finite",
"Field",
"Javascript",
"Snark",
"Cryptography",
"Library"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/ffjavascript/issues"
},
"homepage": "https://github.com/iden3/ffjs#readme",
"dependencies": {
"wasmbuilder": "0.0.16",
"wasmcurves": "0.2.0",
"web-worker": "^1.2.0"
},
"devDependencies": {
"blake2b": "^2.1.3",
"chai": "^4.2.0",
"eslint": "^8.0.1",
"mocha": "^10.0.0",
"rollup": "^2.38.5"
}
}