forked from yasudacloud/strapi-plugin-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.27 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": "strapi-plugin-sso",
"version": "0.4.4",
"description": "Plug-in for single sign-on with Strapi!",
"strapi": {
"displayName": "Single Sign On",
"name": "strapi-plugin-sso",
"description": "Version 4 enables single sign-on",
"kind": "plugin"
},
"scripts": {
"test": "jest",
"lint": "eslint"
},
"keywords": [
"strapi",
"plugin",
"oauth",
"SSO",
"Google",
"Cognito"
],
"peerDependencies": {
"@strapi/strapi": "^4.6.0"
},
"dependencies": {
"generate-password": "^1.7.0",
"pkce-challenge": "^3.1.0"
},
"author": {
"name": "yasudacloud",
"url": "https://github.com/yasudacloud/strapi-plugin-sso"
},
"repository": {
"type": "git",
"url": "https://github.com/yasudacloud/strapi-plugin-sso"
},
"bugs": {
"url": "https://github.com/yasudacloud/strapi-plugin-sso/issues"
},
"maintainers": [
{
"name": "yasudacloud"
}
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=7.0.0"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.28.0",
"jest": "^29.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
}
}