-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "express-ws",
"version": "5.0.1",
"description": "WebSocket endpoints for Express applications",
"main": "index",
"module": "src/index",
"scripts": {
"lint": "eslint src/"
},
"author": "Henning Morud <[email protected]>",
"contributors": [
"Jesús Leganés Combarro <[email protected]>",
"Sven Slootweg <[email protected]>",
"Andrew Phillips <[email protected]>",
"Nicholas Schell <[email protected]>",
"Max Truxa <[email protected]>",
"Kræn Hansen <[email protected]>",
"Alexis Tyler <[email protected]>"
],
"license": "BSD-2-Clause",
"dependencies": {
"esm": "^3.0.84",
"ws": "^7.4.6"
},
"peerDependencies": {
"express": "^4.0.0 || ^5.0.0-alpha.1"
},
"engines": {
"node": ">=4.5.0"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/HenningM/express-ws"
},
"keywords": [
"express",
"ws",
"websocket"
],
"bugs": {
"url": "https://github.com/HenningM/express-ws/issues"
},
"homepage": "https://github.com/HenningM/express-ws",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.12.0",
"express": "^5.0.0-alpha.6"
}
}