-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "futoin-hkdf",
"version": "1.5.3",
"description": "RFC5869: HMAC-based Extract-and-Expand Key Derivation Function (HKDF)",
"main": "hkdf.js",
"types": "hkdf.d.ts",
"files": [
"hkdf.js",
"hkdf.d.ts",
"futoin.json",
"tls.js",
"tls.d.ts"
],
"engines": {
"node": ">=8"
},
"scripts": {
"test": "grunt test && tsd"
},
"repository": {
"type": "git",
"url": "https://github.com/futoin/util-js-hkdf.git"
},
"keywords": [
"futoin",
"crypto",
"hkdf",
"kdf"
],
"author": {
"name": "Andrey Galkin",
"email": "andrey@futoin.org"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/futoin/util-js-hkdf/issues",
"email": "support@futoin.org"
},
"devDependencies": {
"@types/node": "^20.4.5",
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"grunt": "^1.6.1",
"grunt-eslint": "^24.3.0",
"grunt-jsdoc-to-markdown": "^6.0.0",
"grunt-simple-nyc": "^3.0.1",
"grunt-text-replace": "^0.4.0",
"mocha": "^10.2.0",
"tsd": "^0.28.1"
}
}