-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.86 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
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
{
"name": "delayed-async-tasks-manager",
"version": "1.0.1",
"description": "A scheduler for one-time (non-periodic) asynchronous tasks, designed to manage delayed executions. It features status getters to communicate the execution state, a robust error handling mechanism for capturing uncaught errors, and the ability to abort pending executions. Additionally, it offers the option to gracefully await the completion of all ongoing tasks or a specific task.",
"repository": {
"type": "git",
"url": "git+https://github.com/ori88c/delayed-async-tasks-manager.git"
},
"contributors": [
"Ori Cohen (https://github.com/ori88c/)"
],
"homepage": "https://github.com/ori88c/delayed-async-tasks-manager#readme",
"author": "Ori Cohen",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"delayed",
"deferred",
"delayed-task",
"deferred-task",
"task",
"async-task",
"tasks",
"job",
"async-job",
"jobs",
"manager",
"task-manager",
"job-manager",
"schedule",
"task-schedule",
"scheduler",
"task-scheduler",
"job-scheduler",
"setTimeout",
"timer",
"executor",
"runner",
"onetime",
"one-time",
"onetime-execution",
"single-execution",
"typescript",
"ts",
"graceful-shutdown",
"deterministic-shutdown",
"deterministic-termination",
"wait-completion",
"promise",
"nodejs",
"ES2020"
],
"engines": {
"node": ">=14.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"types": "./dist/delayed-async-tasks-manager.d.ts",
"main": "./dist/delayed-async-tasks-manager.js",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
]
}