-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "backpressure-queue",
"version": "1.0.2",
"description": "Pipe nodejs streams into an async.queue for parallelization, get backpressure when the queue is full.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "tsc",
"test": "ts-node test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-k-b/backpressure-queue.git"
},
"author": "Robert K. Bell <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/r-k-b/backpressure-queue/issues"
},
"engines": {
"node": ">=8.5.0"
},
"homepage": "https://github.com/r-k-b/backpressure-queue#readme",
"devDependencies": {
"@types/async": "3.2.24",
"@types/node": "22.9.0",
"@types/tape": "5.6.4",
"prettier": "3.3.3",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"dependencies": {
"async": "3.2.6"
}
}