mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-plugin-sso-oauth2-multiple.git
synced 2025-10-03 04:21:13 +08:00
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"name": "nodebb-plugin-sso-oauth2-multiple",
|
|
"version": "1.5.2",
|
|
"description": "NodeBB Multiple OAuth2 SSO",
|
|
"main": "library.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NodeBB/nodebb-plugin-sso-oauth2-multiple"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint ."
|
|
},
|
|
"keywords": [
|
|
"nodebb",
|
|
"plugin",
|
|
"oauth",
|
|
"oauth2",
|
|
"sso",
|
|
"single sign on",
|
|
"login",
|
|
"registration"
|
|
],
|
|
"author": {
|
|
"name": "Julian Lam",
|
|
"email": "julian@nodebb.org"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/NodeBB/nodebb-plugin-sso-oauth2-multiple/issues"
|
|
},
|
|
"readme": "",
|
|
"readmeFilename": "README.md",
|
|
"dependencies": {
|
|
"async": "^3.2.0",
|
|
"node-fetch": "^2",
|
|
"passport-oauth": "~1.0.0"
|
|
},
|
|
"nbbpm": {
|
|
"compatibility": "^3.3.0 || ^4.x"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/config-angular": "17.6.7",
|
|
"eslint-config-nodebb": "1.1.11",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.2.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|