-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "@epic-web/totp",
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"url": "https://github.com/epicweb-dev/totp"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0-semantically-released",
"description": "Create and verify cryptographically secure Time-based One-time Passwords (TOTP) using the HMAC-based One-time Password (HOTP) algorithm.",
"main": "index.js",
"scripts": {
"test": "node --test --test-reporter spec --experimental-test-coverage *.test.js",
"test:watch": "node --test --test-reporter spec --watch *.test.js",
"typecheck": "npx -p typescript tsc --declaration --emitDeclarationOnly --allowJs --checkJs --downlevelIteration --module nodenext --moduleResolution nodenext --target es2022 --outDir . index.js"
},
"keywords": [
"totp",
"2fa",
"two-factor",
"authentication",
"google authenticator",
"1password",
"authy",
"otp",
"time-based one time password",
"one time password"
],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0"
},
"engines": {
"node": ">=20"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"proseWrap": "always",
"overrides": [
{
"files": [
"**/*.json"
],
"options": {
"useTabs": false
}
}
]
},
"devDependencies": {
"@types/node": "^20.4.5"
}
}