-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "venqueuer",
"version": "1.3.1",
"description": "An javascript asynchronous code enqueuer. Perfect for queue up repetitive i/o tasks that should be executed in order, in a way that the end of one task calls the next in the queue, all this asynchronously, of course. You just need to register the function which you want queue up and call vEnqueuer's methods like enqueue or trigger.",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmvini/vEnqueuer.git"
},
"keywords": [
"task",
"enqueuer",
"callback",
"hell",
"control",
"flow",
"order",
"asynchronous",
"scheduler",
"queue",
"reusable",
"queue",
"io",
"enqueuer"
],
"author": "Marcus Vinícius de Vasconcelos Filho",
"license": "MIT",
"bugs": {
"url": "https://github.com/vmvini/vEnqueuer/issues"
},
"homepage": "https://github.com/vmvini/vEnqueuer#readme"
}