-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.84 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bpmux",
"description": "Node stream multiplexing with back-pressure on each stream",
"version": "8.2.1",
"homepage": "https://github.com/davedoesdev/bpmux",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/bpmux.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/bpmux/issues"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "grunt lint test-fast"
},
"directories": {
"test": "test"
},
"keywords": [
"stream",
"back-pressure",
"backpressure",
"high-water mark",
"duplex",
"readable",
"writable",
"multiplex",
"mux",
"demux"
],
"engines": {
"node": ">= 14"
},
"dependencies": {
"frame-stream": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"async": "^3.2.4",
"c8": "^7.12.0",
"chai": "^4.3.6",
"crypto-browserify": "^3.12.0",
"eslint": "^8.23.1",
"finalhandler": "^1.2.0",
"grunt": "^1.5.3",
"grunt-apidox": "^2.0.17",
"grunt-env": "^1.0.1",
"grunt-eslint": "^24.0.0",
"grunt-exec": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"http2-duplex": "^6.0.0",
"mocha": "^10.0.0",
"nw-builder": "^3.8.5",
"primus": "^8.0.6",
"primus-backpressure": "^3.0.1",
"process": "^0.11.10",
"serve-static": "^1.15.0",
"setimmediate": "^1.0.5",
"stream-browserify": "^3.0.0",
"tmp": "^0.2.1",
"util": "^0.12.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"ws": "^8.8.1"
},
"overrides": {
"jsdoctypeparser": {
"lodash": "^4.17.21"
},
"dox": {
"markdown-it": "^12.3.2"
}
}
}