-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
68
69
70
71
72
{
"name": "bounded-queue",
"version": "0.1.4",
"description": "Bounded batch queue, where items are produced and consumed based on user specified functions",
"type": "module",
"license": "MIT",
"private": false,
"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": "npm run clean && npm run compile-src",
"lint": "eslint src test --ext .ts",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chai": "^4.3.10",
"del-cli": "^5.1.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-unicorn": "^49.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}