forked from paulmillr/noble-bls12-381
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "noble-bls12-381",
"version": "0.7.1",
"description": "Noble BLS12-381 pairing-friendly curve. Fastest, high-security, easily auditable, 0-dep aggregated signatures & pubkey",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"math.js",
"math.d.ts"
],
"scripts": {
"test": "jest test/*.test.ts",
"build": "tsc -d",
"bench": "node test/benchmark.js",
"lint": "prettier --print-width 100 --single-quote --check index.ts"
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://github.com/paulmillr/noble-bls12-381",
"repository": {
"type": "git",
"url": "https://github.com/paulmillr/noble-bls12-381.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^25",
"@types/node": "^14",
"benchmark": "^2.1.4",
"fast-check": "^1.24",
"jest": "^25",
"micro-bmark": "^0.1.2",
"prettier": "^2.1.2",
"ts-jest": "^25",
"typescript": "^4"
},
"keywords": [
"bls12-381",
"bls12",
"bls",
"bls signature",
"threshold signatures",
"aggregate",
"aggregated",
"zk-snark",
"barreto-lynn-scott",
"barreto-naehrig",
"snark",
"pairing",
"cryptography",
"security"
]
}