-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.32 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
63
64
{
"name": "@chordata-insight/strapi-plugin-sso",
"version": "1.2.10",
"description": "Plug-in for single sign-on with Strapi 4",
"strapi": {
"displayName": "Strapi Plugin SSO",
"name": "strapi-plugin-sso",
"description": "Enables single sign-on for strapi v4.x",
"kind": "plugin"
},
"scripts": {
"test": "jest",
"lint": "eslint"
},
"keywords": [
"strapi",
"plugin",
"oauth",
"SSO",
"Keycloak"
],
"peerDependencies": {
"@strapi/strapi": "4.x"
},
"dependencies": {
"@strapi/helper-plugin": "4.7.0",
"generate-password": "^1.7.0"
},
"author": {
"name": "dvarcode",
"url": "https://github.com/chordata-insight/strapi-plugin-sso"
},
"repository": {
"type": "git",
"url": "https://github.com/chordata-insight/strapi-plugin-sso"
},
"bugs": {
"url": "https://github.com/chordata-insight/strapi-plugin-sso/issues"
},
"maintainers": [
{
"name": "dvarcode"
}
],
"engines": {
"node": ">=14.x.x <=17.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"prettier": "^2.7.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}