-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 1.67 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "josk",
"version": "5.0.0",
"description": "Tasks/CRON scheduler and manager for horizontally scaled multi-server applications",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"prepublishOnly": "rollup index.js --file index.cjs --format cjs",
"test": "mocha ./test/npm.js",
"test-redis": "mocha ./test/npm-redis.js",
"test-mongo": "mocha ./test/npm-mongo.js"
},
"keywords": [
"agenda",
"agent",
"cluster",
"CRON",
"highload",
"high load",
"horizontal scaling",
"job",
"jobs",
"manager",
"mongo",
"mongodb",
"redis",
"redisdb",
"schedule",
"scheduler",
"servers",
"task",
"task manager",
"task scheduler",
"tasks"
],
"tags": [
"agenda",
"agent",
"cluster",
"CRON",
"highload",
"high load",
"horizontal scaling",
"job",
"jobs",
"manager",
"mongo",
"mongodb",
"redis",
"redisdb",
"schedule",
"scheduler",
"servers",
"task",
"task manager",
"task scheduler",
"tasks"
],
"repository": {
"type": "git",
"url": "git://github.com/veliovgroup/josk.git"
},
"bugs": {
"url": "https://github.com/veliovgroup/josk/issues"
},
"homepage": "https://github.com/veliovgroup/josk",
"author": "dr.dimitru (https://veliovgroup.com)",
"license": "BSD-3-Clause",
"engines": {
"node": ">=14.20.0"
},
"devDependencies": {
"bson": "^6.6.0",
"bson-ext": "^4.0.3",
"chai": "^5.1.0",
"cron-parser": "^4.9.0",
"mocha": "^10.4.0",
"mongodb": "^6.5.0",
"redis": "^4.6.13"
}
}