-
-
Notifications
You must be signed in to change notification settings - Fork 394
/
bower.json
82 lines (82 loc) · 1.93 KB
/
bower.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
{
"name": "jssha",
"description": "jsSHA implements the complete SHA family (SHA-1, SHA-224/256/384/512, SHA3-224/256/384/512, SHAKE128/256 & cSHAKE128/256) with HMAC and KMAC",
"main": "./dist/sha.js",
"repository": {
"type": "git",
"url": "https://github.com/Caligatio/jsSHA.git"
},
"moduleType": ["globals", "amd", "node"],
"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 <[email protected]>"],
"homepage": "http://caligatio.github.com/jsSHA/",
"ignore": ["test", "rollup.config.js", "tsconfig.json", "**/.*"],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/rewire": "^2.5.28",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.1",
"rewire": "^6.0.0",
"rollup": "^3.27.2",
"rollup-plugin-dts": "^5.3.1",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
}
}