This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
77 lines (77 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@noble/bls12-381",
"version": "1.4.0",
"description": "Fastest JS implementation of BLS12-381. Auditable, secure, 0-dependency aggregated signatures & pairings",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest test/*.test.ts",
"build": "tsc && tsc -p tsconfig.esm.json",
"build:release": "rollup -c rollup.config.js",
"bench": "node test/benchmark.js",
"lint": "prettier --print-width 100 --single-quote --check index.ts"
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/noble/",
"repository": {
"type": "git",
"url": "https://github.com/paulmillr/noble-bls12-381.git"
},
"license": "MIT",
"browser": {
"crypto": false
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/jest": "28.1.1",
"@types/node": "18.0.0",
"fast-check": "3.0.0",
"jest": "28.1.0",
"micro-bmark": "0.2.0",
"prettier": "2.6.2",
"rollup": "2.75.5",
"ts-jest": "28.0.4",
"typescript": "4.7.3",
"@noble/hashes": "1.1.2",
"micro-packed": "0.3.1"
},
"keywords": [
"bls12-381",
"bls12",
"bls",
"bls signature",
"threshold signatures",
"aggregate",
"aggregated",
"zk-snark",
"barreto-lynn-scott",
"barreto-naehrig",
"snark",
"pairing",
"cryptography",
"security"
],
"exports": {
"./math": {
"types": "./lib/math.d.ts",
"import": "./lib/esm/math.js",
"default": "./lib/math.js"
},
".": {
"types": "./lib/index.d.ts",
"import": "./lib/esm/index.js",
"default": "./lib/index.js"
}
},
"funding": [
{
"type": "individual",
"url": "https://paulmillr.com/funding/"
}
]
}