forked from HenningM/express-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "express-ws",
"version": "2.0.0-rc.1",
"description": "WebSocket endpoints for Express applications",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src/ -d lib/",
"lint": "eslint src/"
},
"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>"
],
"license": "BSD-2-Clause",
"dependencies": {
"ws": "^1.0.0"
},
"peerDependencies": {
"express": "^4.0.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": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0"
}
}