-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "zero-overhead-promise-lock",
"version": "1.1.3",
"description": "An efficient Promise lock for Node.js projects, ensuring mutually exclusive execution of asynchronous tasks. Key features include a backpressure indicator and the ability to gracefully await the completion of all currently executing or pending tasks, making it ideal for robust production applications requiring smooth teardown.",
"repository": {
"type": "git",
"url": "git+https://github.com/ori88c/zero-overhead-promise-lock.git"
},
"contributors": [
"Ori Cohen (https://github.com/ori88c/)"
],
"homepage": "https://github.com/ori88c/zero-overhead-promise-lock#readme",
"author": "Ori Cohen",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"lock",
"mutex",
"promise-lock",
"event-loop-lock",
"async-task-lock",
"race-condition",
"critical-section",
"mutually-exclusive",
"backpressure",
"backpressure-indicator",
"graceful-termination",
"graceful-teardown",
"graceful-shutdown",
"clean-teardown",
"smooth-teardown",
"disposable",
"check-and-abort",
"event-loop-iterations",
"is-available",
"check-and-abort",
"throttle",
"rate-limiting",
"nodejs",
"Node.js",
"typescript",
"ts",
"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/zero-overhead-promise-lock.d.ts",
"main": "./dist/zero-overhead-promise-lock.js",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
]
}