-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.65 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
{
"name": "bounded-queue",
"version": "0.1.5",
"description": "Bounded batch queue, where items are produced and consumed based on user specified functions",
"type": "module",
"license": "MIT",
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"exports": "./src/bounded-queue.js",
"types": "src/bounded-queue.d.ts",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"homepage": "https://github.com/Borewit/bounded-queue",
"repository": {
"type": "git",
"url": "https://github.com/Borewit/bounded-queue.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"bugs": "https://github.com/Borewit/bounded-queue/issues",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"keywords": [
"queue",
"bounded",
"buffer",
"producer",
"consumer",
"promise",
"async",
"Dijkstra",
"semaphore",
"synchronization",
"mutex"
],
"contributors": [],
"scripts": {
"clean": "del-cli 'src/**/*.js' 'src/**/*.js.map' 'src/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map' 'test/**/*.d.ts'",
"compile-src": "tsc -p src",
"build": "yarn run clean && npm run compile-src",
"lint-ts": "biome check",
"lint": "yarn run lint-ts ",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"chai": "^4.3.10",
"del-cli": "^5.1.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"@biomejs/biome": "^1.9.4"
}
}