forked from Daninet/hash-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.78 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "hash-wasm",
"version": "4.9.0",
"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)",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"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": "node --expose-gc ./node_modules/.bin/jest --coverage --logHeapUsage",
"webpack": "node webpack/webpack.js",
"typedoc": "typedoc --excludeNotExported --excludeProtected --excludePrivate --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/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/Daninet/hash-wasm/issues"
},
"homepage": "https://github.com/Daninet/hash-wasm#readme",
"author": "Dani Biró <[email protected]> (https://danibiro.com)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.2.3",
"@types/estree": "^0.0.50",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"binaryen": "^101.0.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"rollup": "^2.53.3",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}