forked from max-mapper/websocket-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "websocket-stream",
"version": "3.3.3",
"license": "BSD-2-Clause",
"description": "Use websockets with the node streams API. Works in browser and node",
"scripts": {
"test": "node test.js",
"start": "beefy test-client.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maxogden/websocket-stream.git"
},
"keywords": [
"websocket",
"websockets",
"stream",
"streams",
"realtime"
],
"_npmUser": {
"name": "maxogden",
"email": "max@maxogden.com"
},
"dependencies": {
"duplexify": "^3.2.0",
"inherits": "^2.0.1",
"through2": "^2.0.0",
"ws": "^1.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"beefy": "^2.1.1",
"browserify": "^5.11.1",
"concat-stream": "^1.4.7",
"tape": "^2.14.0"
},
"optionalDependencies": {},
"browser": {
"./echo-server.js": "./fake-server.js",
"./main.js": "./stream.js",
"ws": "./ws-fallback.js"
},
"bugs": {
"url": "https://github.com/maxogden/websocket-stream/issues"
},
"homepage": "https://github.com/maxogden/websocket-stream#readme",
"main": "index.js",
"author": ""
}