-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "pull-ws",
"version": "3.3.2",
"description": "Simple pull-streams for websocket client connections",
"main": "index.js",
"stability": "unstable",
"scripts": {
"test": "tap test/*.js",
"browser": "testling"
},
"repository": {
"type": "git",
"url": "https://github.com/DamonOehlman/pull-ws.git"
},
"keywords": [
"pull-stream",
"websocket",
"ws"
],
"author": "Damon Oehlman <damon.oehlman@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DamonOehlman/pull-ws/issues"
},
"homepage": "https://github.com/DamonOehlman/pull-ws",
"dependencies": {
"relative-url": "^1.0.2",
"safe-buffer": "^5.1.1",
"ws": "^1.1.0"
},
"devDependencies": {
"mapleTree": "^0.5.1",
"pull-goodbye": "~0.0.1",
"pull-json-doubleline": "^1.0.0",
"pull-split": "^0.2.0",
"pull-stream": "^3.3.2",
"pull-through": "^1.0.18",
"tap": "^5.7.2",
"tape": "^4.4.0",
"testling": "^1.7.1",
"wsurl": "^1.0.0"
},
"browser": {
"ws": false,
"./server": false
},
"testling": {
"files": "test/all.js",
"server": "test/server.js"
}
}