-
-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathbower.json
More file actions
81 lines (81 loc) · 1.91 KB
/
Copy pathbower.json
File metadata and controls
81 lines (81 loc) · 1.91 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
{
"name": "jssha",
"description": "jsSHA implements the complete Secure Hash Standard (SHA) family (SHA-1, SHA-224/256/384/512, SHA3-224/256/384/512, SHAKE128/256, cSHAKE128/256, and KMAC128/256) with HMAC",
"main": "./dist/sha.js",
"repository": {
"type": "git",
"url": "https://github.com/Caligatio/jsSHA.git"
},
"moduleType": ["globals", "amd", "node", "es6"],
"keywords": [
"SHA-1",
"SHA-224",
"SHA3-224",
"SHA-256",
"SHA3-256",
"SHA-384",
"SHA3-384",
"SHA-512",
"SHA3-512",
"SHAKE-128",
"SHAKE-256",
"SHAKE128",
"SHAKE256",
"cSHAKE128",
"cSHAKE256",
"KMAC128",
"KMAC256",
"SHA1",
"SHA224",
"SHA256",
"SHA384",
"SHA512",
"SHA-2",
"SHA2",
"SHA-3",
"SHA3",
"SHAKE",
"cSHAKE",
"cSHAKE-128",
"cSHAKE-256",
"HMAC",
"KMAC",
"KMAC-128",
"KMAC-256",
"hash",
"cryptography"
],
"license": "BSD-3-Clause",
"authors": ["Brian Turek <brian.turek@gmail.com>"],
"homepage": "https://caligatio.github.com/jsSHA/",
"ignore": ["test", "rollup.config.mjs", "tsconfig.json", "**/.*"],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/rewire": "^2.5.30",
"@types/sinon": "^21.0.1",
"chai": "^4.5.0",
"eslint": "^10.5.0",
"husky": "^9.1.7",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"lint-staged": "^17.0.8",
"mocha": "^11.7.6",
"nyc": "^18.0.0",
"prettier": "^3.8.4",
"rewire": "^9.0.1",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "<5.5",
"typescript-eslint": "^8.62.0"
}
}