-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1004 Bytes
/
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
{
"name": "hotp",
"version": "2.0.0",
"description": "HMAC-Based One-Time Password (HOTP), and Time-Based One-Time Password (TOTP) Algorithms",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"hotp",
"totp",
"otp",
"rfc4226",
"rfc 4226",
"4226",
"rfc6238",
"rfc 6238",
"6238",
"one-time password",
"two-factor authentication",
"two-factor",
"2fa",
"authentication",
"authenticator",
"hmac",
"hmac-based",
"time-based"
],
"main": "lib/hotp",
"bin": {
"hotp": "bin/hotp",
"totp": "bin/totp"
},
"scripts": {
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"mocha": "^5.2.0"
},
"homepage": "https://github.com/jhermsmeier/node-hotp",
"repository": {
"type": "git",
"url": "https://github.com/jhermsmeier/node-hotp.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-hotp/issues"
}
}