-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "zero-backpressure-semaphore-typescript",
"version": "3.1.3",
"description": "A modern Promise-semaphore for Node.js projects, enabling users to limit the number of concurrently executing promises. Offering backpressure control for enhanced efficiency, utilizing a communicative API that signals availability, promoting a just-in-time approach. Additionally, it incorporates mechanisms for graceful termination and error handling, making it suitable for complex scenarios.",
"repository": {
"type": "git",
"url": "git+https://github.com/ori88c/zero-backpressure-semaphore-typescript.git"
},
"contributors": [
"Ori Cohen (https://github.com/ori88c/)"
],
"homepage": "https://github.com/ori88c/zero-backpressure-semaphore-typescript#readme",
"author": "Ori Cohen",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest"
},
"keywords": [
"semaphore",
"mutex",
"promise-limiter",
"promise-semaphore",
"promise-pool",
"task-semaphore",
"task-pool",
"concurrency-limiter",
"lock",
"job",
"task",
"async-task",
"concurrency",
"backpressure",
"backpressure-control",
"graceful-termination",
"graceful-teardown",
"graceful-shutdown",
"wait-for-availability",
"notify-availability",
"free-slot",
"execution-slot",
"wait-for-completion",
"wait-in-flight",
"error-handling",
"uncaught-error",
"uncaught-rejection",
"async",
"nodejs",
"typescript",
"ts",
"ES2020"
],
"engines": {
"node": ">=14.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"prettier": "^3.5.3"
},
"types": "./dist/zero-backpressure-semaphore.d.ts",
"main": "./dist/zero-backpressure-semaphore.js",
"files": [
"src/",
"dist/",
"README.md",
"LICENSE"
]
}