-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 810 Bytes
/
package.json
File metadata and controls
35 lines (34 loc) · 810 Bytes
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
{
"name": "async-queue-manager-tsk",
"version": "1.0.0",
"description": "A Node.js package for managing asynchronous task queues with DAG-based dependencies, adaptive concurrency, and monitoring",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node examples/basic-usage.js",
"start:monitor": "node examples/monitor-server.js"
},
"keywords": [
"async",
"queue",
"task-manager",
"dag",
"concurrency",
"monitoring"
],
"author": "Tisankan",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.3",
"express": "^4.18.2",
"node-os-utils": "^1.3.7",
"socket.io": "^4.7.2"
},
"devDependencies": {
"jest": "^29.7.0"
},
"optionalDependencies": {
"@grpc/grpc-js": "^1.9.3",
"@grpc/proto-loader": "^0.7.10"
}
}