forked from julianlam/nodebb-plugin-sso-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "nodebb-plugin-sso-gitlab-openb",
"version": "0.3.4",
"description": "NodeBB Gitlab OAuth SSO",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/openbnet/nodebb-plugin-sso-gitlab"
},
"keywords": [
"nodebb",
"plugin",
"gitlab",
"sso",
"single sign on",
"login",
"registration"
],
"author": {
"name": "Hansel Ke",
"email": "hansel@openb.net"
},
"license": "MIT",
"readme": "",
"readmeFilename": "README.md",
"dependencies": {
"async": "^2",
"passport-oauth": "~1.0.0"
},
"nbbpm": {
"compatibility": "^1.0.1",
"index": false
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^7.1.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}