forked from kudos/koa-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "koa-websocket",
"version": "5.0.1",
"description": "Light wrapper around Koa providing a websocket middleware handler that is koa-route compatible.",
"main": "index.js",
"scripts": {
"test": "mocha $NODE_FLAGS test/test.js",
"lint": "eslint ."
},
"keywords": [
"koa",
"websockets",
"ws",
"sockets",
"routes"
],
"author": {
"name": "Jonathan Cremin",
"email": "[email protected]",
"url": "https://crem.in",
"twitter": "https://twitter.com/kudoz"
},
"repository": "git://github.com/kudos/koa-websocket",
"bugs": "https://github.com/kudos/koa-websocket/issues",
"homepage": "https://github.com/kudos/koa-websocket",
"license": "MIT",
"dependencies": {
"co": "^4.4.0",
"debug": "^3.1.0",
"koa-compose": "^4.0.0",
"ws": "^5.2.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"koa": "^2.5.1",
"koa-route": "^3.2.0",
"mocha": "^5.2.0"
}
}