forked from iden3/ffjavascript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "react-native-ffjavascript",
"type": "module",
"version": "0.0.1",
"description": "Finite Field Library in Javascript (react-native)",
"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/vmidyllic/react-native-ffjavascript.git"
},
"keywords": [
"Finite",
"Field",
"Javascript",
"Snark",
"Cryptography",
"Library"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/vmidyllic/react-native-ffjavascript/issues"
},
"homepage": "https://github.com/iden3/ffjs#readme",
"dependencies": {
"big-integer": "^1.6.48",
"wasmcurves": "0.0.14",
"web-worker": "^1.0.0"
},
"devDependencies": {
"blake2b": "^2.1.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^8.2.1",
"rollup": "^2.38.5"
}
}