-
Notifications
You must be signed in to change notification settings - Fork 602
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "websocket",
"description": "Websocket Client & Server Library implementing the WebSocket protocol as specified in RFC 6455.",
"keywords": [
"websocket",
"websockets",
"socket",
"networking",
"comet",
"push",
"RFC-6455",
"realtime",
"server",
"client"
],
"author": "Brian McKelvey <[email protected]> (https://github.com/theturtle32)",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (http://dev.sipdoc.net)"
],
"version": "1.0.34",
"repository": {
"type": "git",
"url": "https://github.com/theturtle32/WebSocket-Node.git"
},
"homepage": "https://github.com/theturtle32/WebSocket-Node",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"bufferutil": "^4.0.1",
"debug": "^2.2.0",
"es5-ext": "^0.10.63",
"typedarray-to-buffer": "^3.1.5",
"utf-8-validate": "^5.0.2",
"yaeti": "^0.0.6"
},
"devDependencies": {
"buffer-equal": "^1.0.0",
"gulp": "^4.0.2",
"gulp-jshint": "^2.0.4",
"jshint-stylish": "^2.2.1",
"jshint": "^2.0.0",
"tape": "^4.9.1"
},
"config": {
"verbose": false
},
"scripts": {
"test": "tape test/unit/*.js",
"gulp": "gulp"
},
"main": "index",
"directories": {
"lib": "./lib"
},
"browser": "lib/browser.js",
"license": "Apache-2.0"
}