2014-01-29 16:42:06 +00:00
|
|
|
{
|
|
|
|
"name": "nodebb-plugin-sso-oauth",
|
2017-07-06 15:19:52 +00:00
|
|
|
"version": "0.3.3",
|
2014-01-29 16:42:06 +00:00
|
|
|
"description": "NodeBB Generic OAuth SSO",
|
|
|
|
"main": "library.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/julianlam/nodebb-plugin-sso-oauth"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"nodebb",
|
|
|
|
"plugin",
|
|
|
|
"oauth",
|
2014-08-21 14:52:18 +00:00
|
|
|
"oauth2",
|
2014-01-29 16:42:06 +00:00
|
|
|
"sso",
|
|
|
|
"single sign on",
|
2014-08-21 14:52:18 +00:00
|
|
|
"login",
|
2014-01-29 16:42:06 +00:00
|
|
|
"registration"
|
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "Julian Lam",
|
|
|
|
"email": "julian@nodebb.org"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/julianlam/nodebb-plugin-sso-oauth/issues"
|
|
|
|
},
|
|
|
|
"readme": "",
|
|
|
|
"readmeFilename": "README.md",
|
|
|
|
"dependencies": {
|
2019-01-17 21:51:32 +00:00
|
|
|
"async": "^2.6.1",
|
2014-01-29 16:42:06 +00:00
|
|
|
"passport-oauth": "~1.0.0"
|
2014-11-10 18:25:45 +00:00
|
|
|
},
|
|
|
|
"nbbpm": {
|
2016-03-30 16:09:31 +00:00
|
|
|
"compatibility": "^1.0.1",
|
2015-02-17 21:51:20 +00:00
|
|
|
"index": false
|
2019-01-17 21:41:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@commitlint/cli": "^7.3.2",
|
|
|
|
"@commitlint/config-angular": "^7.3.1",
|
|
|
|
"eslint": "^5.12.0",
|
|
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
|
|
|
"eslint-plugin-import": "^2.14.0",
|
|
|
|
"husky": "^1.3.1",
|
|
|
|
"lint-staged": "^8.1.0"
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
|
|
|
]
|
2014-01-29 16:42:06 +00:00
|
|
|
}
|
|
|
|
}
|