-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "wasmsnark",
"version": "0.0.10",
"description": "zksnark wasm library",
"main": "index.js",
"scripts": {
"test": "mocha --experimental-worker",
"build_bn128": "node tools/buildwasm_bn128.js; browserify main_bn128.js -o build/wasmsnark_bn128.js --exclude worker_threads --exclude crypto; cp build/wasmsnark_bn128.js example/bn128/wasmsnark_bn128.js",
"build_mnt6753": "node tools/buildwasm_mnt6753.js; browserify main_mnt6753.js -o build/wasmsnark_mnt6753.js --exclude worker_threads --exclude crypto; cp build/wasmsnark_mnt6753.js example/mnt6753/wasmsnark_mnt6753.js"
},
"keywords": [
"bigint",
"bignum",
"biginteger",
"zq",
"elliptic",
"curve",
"prime",
"field"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/iden3/wasmsnark.git"
},
"devDependencies": {
"browserify": "^16.5.0",
"eslint": "^6.8.0",
"mocha": "^6.1.4",
"package": "^1.0.1",
"wasmbuilder": "0.0.10"
},
"dependencies": {
"big-integer": "^1.6.42",
"blakejs": "^1.1.0"
}
}