-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
34 lines (34 loc) · 785 Bytes
/
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
{
"name": "bls-wasm",
"version": "1.4.0",
"description": "BLS signature for Node.js by WebAssembly",
"main": "src/index.js",
"scripts": {
"test": "node test/test.js"
},
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/herumi/bls-wasm.git"
},
"keywords": [
"BLS signature",
"WebAssembly",
"pairing"
],
"files": [
"package.json",
"src/index.js",
"src/bls.js",
"src/bls_c.js",
"src/index.d.ts",
"browser/bls.js",
"browser/package.json"
],
"author": "herumi <herumi@nifty.com> (https://github.com/herumi/)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/herumi/bls-wasm/issues"
},
"homepage": "https://github.com/herumi/bls-wasm#readme"
}