forked from 1000TurquoisePogs/express-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "@rocketsoftware/express-ws",
"version": "5.0.1",
"description": "WebSocket endpoints for Express applications",
"main": "index.js",
"scripts": {
"lint": "eslint lib/"
},
"author": "Henning Morud <henning@morud.org>",
"contributors": [
"Jesús Leganés Combarro <piranna@gmail.com>",
"Sven Slootweg <admin@cryto.net>",
"Andrew Phillips <theasp@gmail.com>",
"Nicholas Schell <nschell@gmail.com>",
"Max Truxa <dev@maxtruxa.com>",
"Kræn Hansen <mail@kraenhansen.dk>",
"1000TurquoisePogs <sgrady@rocketsoftware.com>"
],
"license": "BSD-2-Clause",
"dependencies": {
"ws": "^6.2.3"
},
"peerDependencies": {
"express": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/rocketsoftware/express-ws"
},
"keywords": [
"express",
"ws",
"websocket"
],
"bugs": {
"url": "https://github.com/rocketsoftware/express-ws/issues"
},
"homepage": "https://github.com/rocketsoftware/express-ws",
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"express": "^4.0.0"
}
}