-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.82 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
{
"name": "non-overlapping-recurring-task",
"version": "1.1.1",
"description": "A modern `setInterval` substitute tailored for asynchronous tasks, ensuring non-overlapping executions by skipping attempts if a previous execution is still in progress. Features execution status getters, graceful teardown, and a fixed delay between runs. The ability to gracefully await the completion of an ongoing execution makes it ideal for production apps demanding smooth resource cleanup.",
"repository": {
"type": "git",
"url": "git+https://github.com/ori88c/non-overlapping-recurring-task.git"
},
"contributors": [
"Ori Cohen (https://github.com/ori88c/)"
],
"homepage": "https://github.com/ori88c/non-overlapping-recurring-task#readme",
"author": "Ori Cohen",
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"non-overlap",
"non-overlapping",
"execution-overlap",
"recurring",
"recurring-task",
"periodic-task",
"async-task",
"setInterval",
"disjoint-executions",
"mutually-exclusive",
"scheduler",
"task-scheduler",
"periodic-scheduler",
"graceful-termination",
"graceful-teardown",
"graceful-shutdown",
"clean-teardown",
"smooth-shutdown",
"nodejs",
"node.js",
"typescript",
"ts",
"ES2020"
],
"engines": {
"node": ">=14.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"types": "./dist/non-overlapping-recurring-task.d.ts",
"main": "./dist/non-overlapping-recurring-task.js",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
]
}