-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "strapi-plugin-redcron",
"version": "0.1.0",
"description": "A drop in replacement for the Strapi cron plugin that uses Redlock to prevent multiple instances of Strapi from running the same cron job at the same time.",
"strapi": {
"name": "redcron",
"description": "A drop in replacement for the Strapi cron plugin that uses Redlock to prevent multiple instances of Strapi from running the same cron job at the same time.",
"kind": "plugin",
"displayName": "Redcron"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"scripts": {
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"dependencies": {
"debug": "^4.3.4",
"redlock": "^5.0.0-beta.2"
},
"author": {
"name": "Excl Networks Inc."
},
"repository": {
"type": "git",
"url": "https://github.com/excl-networks/strapi-plugin-redcron"
},
"maintainers": [
{
"name": "Excl Networks Inc."
}
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.34.0"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}