forked from julianlam/nodebb-plugin-sso-oauth
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.3 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
{
"name": "nodebb-plugin-sso-azuread",
"version": "0.0.2",
"description": "NodeBB AzureAD OAuth SSO",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/oshz/nodebb-plugin-sso-azuread.git"
},
"keywords": [
"nodebb",
"plugin",
"oauth",
"oauth2",
"sso",
"single sign on",
"login",
"registration",
"azure",
"azure ad"
],
"author": {
"name": "Omair Khan",
"email": "omairkhan@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oshz/nodebb-plugin-sso-azuread/issues"
},
"readme": "",
"readmeFilename": "README.md",
"dependencies": {
"async": "^2.6.1",
"passport": "*",
"passport-oauth": "~1.0.0",
"body-parser": "^1.15.2",
"passport-azure-ad": "^3.0.12"
},
"nbbpm": {
"compatibility": "^1.12.1"
},
"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"
]
}
}