-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "nodebb-plugin-2factor",
"version": "7.5.8",
"description": "",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/julianlam/nodebb-plugin-2factor"
},
"keywords": [
"nodebb",
"plugin",
"authentication",
"2factor"
],
"author": {
"name": "Julian Lam",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/julianlam/nodebb-plugin-2factor/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^3.8.0"
},
"dependencies": {
"@github/webauthn-json": "^0.5.7",
"arraybuffer-to-string": "^1.0.2",
"async": "^3.2.0",
"base64url": "^3.0.1",
"eslint": "8.x",
"fido2-lib": "^2.8.1",
"lru-cache": "^5.1.1",
"notp": "^2.0.3",
"passport-totp": "0.0.2",
"qrcode": "^1.5.0",
"thirty-two": "1.0.2",
"u2f": "^0.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^7.1.2",
"eslint": "8.42.0",
"eslint-config-nodebb": "0.2.1",
"eslint-plugin-import": "2.27.5",
"husky": "^8.0.1",
"lint-staged": "^10.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}