-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "2fa-node",
"version": "0.0.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/FinotiLucas/2fa-node"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts",
"format": "prettier --write .",
"lint": "npx eslint ./lib/**",
"lint:fix": "npx eslint ./lib/** --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"totp",
"hotp",
"otp",
"authenticator",
"one time password",
"google authenticator",
"authentication",
"2FA",
"2 factor",
"node",
"auth",
"2fa",
"mfa"
],
"author": "Lucas Lima Finoti <lucas.finoti@protonmail.com>",
"license": "MIT",
"description": "Easy 2-Factor Integration For Node.js",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@japa/assert": "^4.0.1",
"@japa/expect": "^3.0.3",
"@japa/expect-type": "^2.0.3",
"@japa/runner": "^4.1.0",
"@types/node": "^22.10.7",
"@types/qrcode": "^1.5.5",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"type": "module",
"dependencies": {
"otplib": "^12.0.1",
"qrcode": "^1.5.4"
}
}