forked from julianlam/nodebb-plugin-sso-oauth
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 1.54 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
66
67
68
69
70
{
"name": "nodebb-plugin-fusionauth-oidc",
"version": "2.0.0",
"description": "Authenticate to FusionAuth or any OpenID Connect identity provider.",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/FusionAuth/nodebb-plugin-fusionauth-oidc"
},
"keywords": [
"nodebb",
"plugin",
"oauth",
"oauth2",
"sso",
"single sign on",
"login",
"registration"
],
"author": {
"name": "Tyler Scott",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Vinícius Campitelli",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/FusionAuth/nodebb-plugin-fusionauth-oidc/issues"
},
"readmeFilename": "README.md",
"dependencies": {
"async": "^3.2.5",
"passport-oauth2": "^1.7.0"
},
"nbbpm": {
"compatibility": "^3.5.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-angular": "^18.4.2",
"@types/async": "^3.2.23",
"@types/express": "^4.17.21",
"@types/passport-oauth2": "^1.4.15",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"prepare": "tsc"
}
}