-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "batch_queue",
"version": "1.1.2",
"description": "A queue for pushing tasks and then executing them in batches when needed. This is mostly helpful for cases where you want to accumulate items in one process and act on them in batches in a different process. For example, let's say you want to accumulate records that you want to later insert them in batches into a DB to reduce traffic/cost/... ",
"main": "BatchQueue.js",
"scripts": {
"test": "node test/consumer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yamsafer/batch_queue.git"
},
"keywords": [
"queue",
"batch",
"process",
"task",
"tasks",
"job",
"sqlite",
"push",
"pop"
],
"author": "mtaweel <taweel@yamsafer.me> (https://www.yamsafer.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yamsafer/batch_queue/issues"
},
"homepage": "https://github.com/Yamsafer/batch_queue#readme",
"dependencies": {
"node-schedule": "^1.2.5",
"sqlite": "^2.9.0",
"uniqid": "^4.1.1"
}
}