forked from BBleae/nodebb-plugin-sso-multi-nodebb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.34 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
{
"name": "nodebb-plugin-sso-multi-nodebb",
"version": "8.0.0",
"description": "Allows login sessions from your NodeBB to persist in another NodeBB",
"main": "library.js",
"repository": {
"type": "git",
"url": "https://github.com/Magictea-Intl/nodebb-plugin-sso-multi-nodebb"
},
"keywords": [
"nodebb",
"plugin"
],
"author": {
"name": "Julian Lam",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Brush",
"email": "[email protected]"
},
{
"name": "Magic SA",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Magictea-Intl/nodebb-plugin-sso-multi-nodebb/issues"
},
"readmeFilename": "README.md",
"nbbpm": {
"compatibility": "^1.13.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"async": "^2",
"jsonwebtoken": "5.5.4",
"lint-staged": "^10.0.9",
"lodash": "^4.17.14"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^7.1.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^2.4.0"
}
}