forked from breejs/bree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 3.68 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@mintplex-labs/bree",
"description": "A fork of BreeJS/bree. A Node.js and JavaScript task scheduler with cron, dates, ms, later, and human-friendly support. Works in Node v12.17.0+, uses worker threads or process forks, and supports async/await, retries, throttling, concurrency, and cancelable promises (graceful shutdown). Simple, fast, and lightweight. Customized for AnythingLLM.",
"version": "9.2.5",
"author": "Mintplex Labs Inc <team@mintplexlabs.com>",
"bugs": {
"url": "https://github.com/Mintplex-Labs/bree/issues",
"email": "team@mintplexlabs.com"
},
"contributors": [
"Mintplex Labs Inc <tim@mintplexlabs.com> (https://mintplexlabs.com)",
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"shadowgate15 (https://github.com/shadowgate15)"
],
"dependencies": {
"@breejs/later": "^4.2.0",
"boolean": "^3.2.0",
"combine-errors": "^3.0.3",
"cron-validate": "^1.4.5",
"human-interval": "^2.0.1",
"is-string-and-not-blank": "^0.0.2",
"is-valid-path": "^0.1.1",
"ms": "^2.1.3",
"p-wait-for": "3",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@goto-bus-stop/envify": "^5.0.0",
"@sinonjs/fake-timers": "^11.2.2",
"@types/node": "^20.12.7",
"@types/safe-timers": "^1.1.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"delay": "5",
"eslint": "8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"events.once": "^2.0.2",
"fixpack": "^4.0.0",
"husky": "8.0.3",
"into-stream": "7",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"tsd": "^0.31.0",
"xo": "0.54"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src"
],
"homepage": "https://github.com/Mintplex-Labs/bree",
"keywords": [
"agenda",
"async",
"await",
"bee",
"bree",
"bull",
"callback",
"cancel",
"cancelable",
"child",
"clear",
"cron",
"cronjob",
"crontab",
"date",
"dates",
"day",
"dayjs",
"delay",
"english",
"express",
"expression",
"frequencies",
"frequency",
"frequent",
"friendly",
"graceful",
"human",
"humans",
"interval",
"job",
"jobs",
"js",
"koa",
"koatiming",
"lad",
"lass",
"later",
"moment",
"momentjs",
"mongo",
"mongodb",
"mongoose",
"p-cancel",
"p-cancelable",
"p-retry",
"parse",
"parser",
"pretty",
"process",
"processors",
"promise",
"promises",
"queue",
"queues",
"readable",
"recur",
"recurring",
"redis",
"redis",
"reload",
"restart",
"run",
"runner",
"schedule",
"scheduler",
"setup",
"spawn",
"tab",
"task",
"tasker",
"time",
"timeout",
"timer",
"timers",
"translated",
"universalify",
"worker",
"workers"
],
"license": "MIT",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Mintplex-Labs/bree"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"lint": "npm run lint:js && npm run lint:md && fixpack",
"lint:js": "xo --fix --ignore examples/",
"lint:md": "remark . -qfo",
"nyc": "cross-env NODE_ENV=test nyc ava",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run ava && tsd",
"test-coverage": "cross-env NODE_ENV=test nyc npm run test"
},
"types": "src/index.d.ts"
}