-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "fair-task-pool",
"version": "1.2.0",
"description": "Fairly schedule async tasks and prevent any since user/subject from monopolizing the system resources.",
"keywords": [
"task-queue",
"async",
"queue",
"fair-scheduling",
"scheduling",
"concurrent",
"rate-limiting",
"typescript",
"per-user-queue"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/fair-task-pool.git"
},
"homepage": "https://github.com/beenotung/fair-task-pool#readme",
"bugs": {
"url": "https://github.com/beenotung/fair-task-pool/issues"
},
"main": "./fair-task-pool.js",
"types": "./fair-task-pool.d.ts",
"files": [
"./fair-task-pool.js",
"./fair-task-pool.d.ts"
],
"scripts": {
"test": "tsc --noEmit && npm run mocha",
"mocha": "ts-mocha *.spec.ts",
"build": "tsc -p ."
},
"devDependencies": {
"@types/chai": "4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"chai": "4",
"mocha": "^10.4.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}