forked from paulmillr/noble-ed25519
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "noble-ed25519",
"version": "1.2.2",
"description": "Fastest JS implementation of ed25519 & ristretto255. Auditable, high-security, 0-dependency pubkey, scalarmult & EDDSA",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc -d",
"lint": "prettier --print-width 100 --single-quote --check index.ts",
"test": "jest",
"bench": "node test/benchmark.js"
},
"jest": {
"testRegex": "/test/.*.ts",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"useStderr": true,
"bail": 2
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/posts/noble-secp256k1-fast-ecc/",
"repository": {
"type": "git",
"url": "https://github.com/paulmillr/noble-ed25519.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"fast-check": "^2.14.0",
"jest": "^26.6.3",
"micro-bmark": "^0.1.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"keywords": [
"ed25519",
"edwards",
"ristretto255",
"decaf",
"curve25519",
"x25519",
"elliptic",
"elliptic curve",
"curve",
"signature",
"ecc",
"eddsa",
"ecdsa",
"cryptography",
"security"
]
}