forked from Daninet/hash-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@sourcer/hash-wasm",
"version": "4.9.1",
"description": "Lightning fast hash functions for browsers and Node.js using hand-tuned WebAssembly binaries (MD4, MD5, SHA-1, SHA-2, SHA-3, Keccak, BLAKE2, BLAKE3, PBKDF2, Argon2, bcrypt, scrypt, Adler-32, CRC32, CRC32C, RIPEMD-160, HMAC, xxHash, SM3, Whirlpool)",
"type": "module",
"types": "dist/lib/index.d.ts",
"scripts": {
"start": "ts-node lib/index.ts",
"build": "sh -c ./scripts/build.sh",
"eslint": "eslint lib/**/*.ts test/**/*.ts",
"prepublishOnly": "sh -c ./scripts/build.sh",
"test": "jest --coverage --logHeapUsage",
"webpack": "node webpack/webpack.js",
"typedoc": "typedoc --excludeNotExported --excludeProtected --excludePrivate --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SourceR85/hash-wasm.git"
},
"keywords": [
"hash",
"wasm",
"webassembly",
"md5",
"adler-32",
"crc32",
"crc32c",
"sha-1",
"sha-2",
"sha-3",
"xxhash",
"keccak",
"ripemd",
"hmac",
"pbkdf2",
"blake2",
"blake2b",
"blake2s",
"blake3",
"fast",
"hashing",
"browser",
"key",
"derivation",
"password",
"md4",
"sha",
"sha1",
"sha2",
"sha224",
"sha-224",
"sha256",
"sha-256",
"sha384",
"sha-384",
"sha512",
"sha-512",
"sha3",
"sha3-224",
"sha3-256",
"sha3-384",
"sha3-512",
"xxhash32",
"xxhash64",
"ripemd160",
"argon2",
"argon2i",
"argon2d",
"argon2id",
"scrypt",
"bcrypt",
"sm3",
"whirlpool"
],
"bugs": {
"url": "https://github.com/SourceR85/hash-wasm/issues"
},
"homepage": "https://github.com/Daninet/hash-wasm#readme",
"author": "Dani Biró <[email protected]> (https://danibiro.com)",
"license": "MIT",
"devDependencies": {
"@el3um4s/rollup-plugin-terser": "^1.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"binaryen": "^110.0.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"jest": "^29.2.1",
"rollup": "^3.2.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}