mirror of
https://github.com/Mintplex-Labs/express-ws.git
synced 2026-07-01 20:36:30 -04:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "express-ws",
|
|
"version": "1.0.0-rc.2",
|
|
"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": "^0.4.32"
|
|
},
|
|
"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"
|
|
}
|
|
}
|