forked from strapi-community/plugin-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "strapi-plugin-redis",
"version": "1.0.1",
"description": "Plugin used to centralize management of Redis connections in Strapi",
"strapi": {
"displayName": "Redis",
"name": "redis",
"description": "Plugin used to centralize management of Redis connections in Strapi",
"required": false,
"kind": "plugin"
},
"dependencies": {
"chalk": "4.1.2",
"debug": "4.3.4",
"ioredis": "5.2.4"
},
"devDependencies": {
"@strapi-community/eslint-config": "0.1.5",
"eslint": "8.8.0"
},
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"author": {
"name": "Derrick Mehaffy",
"email": "derrickmehaffy@gmail.com",
"url": "https://github.com/derrickmehaffy"
},
"maintainers": [
{
"name": "Strapi Community",
"url": "https://github.com/strapi-community"
},
{
"name": "Derrick Mehaffy",
"email": "derrickmehaffy@gmail.com",
"url": "https://github.com/derrickmehaffy",
"lead": true
}
],
"bugs": {
"url": "https://github.com/strapi-community/strapi-plugin-redis/issues"
},
"homepage": "https://github.com/strapi-community/strapi-plugin-redis#readme",
"engines": {
"node": ">=12.x.x <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}