forked from kudos/koa-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "koa-websocket",
"version": "2.0.0",
"description": "Light wrapper around Koa providing a websocket middleware handler that is koa-route compatible.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha $NODE_FLAGS test/test.js"
},
"keywords": [
"koa",
"websockets",
"ws",
"sockets",
"routes"
],
"author": {
"name": "Jonathan Cremin",
"email": "jonathan@crem.in",
"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": "^2.1.2",
"koa-compose": "^2.3.0",
"ws": "^1.1.0"
},
"devDependencies": {
"koa": "^1.0.0",
"koa-route": "^2.4.0",
"mocha": "^2.5.3"
}
}