-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.5 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@noble/hashes",
"version": "2.4.0",
"description": "Audited & minimal 0-dependency JS implementation of SHA, RIPEMD, BLAKE, HMAC, HKDF, PBKDF & Scrypt",
"files": [
"*.js",
"*.d.ts",
"src"
],
"devDependencies": {
"@paulmillr/jsbt": "0.7.2",
"bismar": "0.1.9",
"@types/node": "26.2.0",
"prettier": "3.9.6",
"typescript": "7.0.2"
},
"scripts": {
"benchmark": "node benchmark/hashes.ts",
"benchmark:thirdparty": "cd benchmark/thirdparty; npm ci; JSBT_BENCHMARK_DIMENSIONS='algorithm,buffer,library' node hashes.ts",
"benchmark:thirdparty-scrypt": "cd benchmark/thirdparty; npm ci; JSBT_BENCHMARK_DIMENSIONS='iters,library' FILTER='async' node scrypt.ts",
"benchmark:size": "bismar -bsm",
"build": "tsc",
"build:clean": "rm *.{js,d.ts} 2> /dev/null",
"check": "jsbt-check",
"format": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "node test/index.ts",
"test:dos": "node test/slow-dos.test.ts",
"test:slow": "node test/slow-big.test.ts",
"test:acvp": "node test/slow-acvp.test.ts",
"test:kdf": "node test/slow-kdf.test.ts",
"test:ultra": "node test/slow-ultra.test.ts",
"test:ultra:scrypt": "node test/slow-extreme-scrypt.test.ts"
},
"exports": {
".": "./index.js",
"./_md.js": "./_md.js",
"./argon2.js": "./argon2.js",
"./blake1.js": "./blake1.js",
"./blake2.js": "./blake2.js",
"./blake3.js": "./blake3.js",
"./eskdf.js": "./eskdf.js",
"./hkdf.js": "./hkdf.js",
"./hmac.js": "./hmac.js",
"./legacy.js": "./legacy.js",
"./pbkdf2.js": "./pbkdf2.js",
"./scrypt.js": "./scrypt.js",
"./sha2.js": "./sha2.js",
"./sha3-addons.js": "./sha3-addons.js",
"./sha3.js": "./sha3.js",
"./webcrypto.js": "./webcrypto.js",
"./utils.js": "./utils.js"
},
"engines": {
"node": ">= 20.19.0"
},
"keywords": [
"sha1",
"sha2",
"sha3",
"blake",
"blake2",
"blake3",
"hmac",
"hkdf",
"pbkdf2",
"scrypt",
"sha256",
"sha512",
"keccak",
"ripemd160",
"kdf",
"hash",
"cryptography",
"security",
"noble"
],
"homepage": "https://paulmillr.com/noble/",
"funding": "https://paulmillr.com/funding/",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/noble-hashes.git"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT"
}