-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "koa-websocket",
"version": "7.0.0",
"description": "Light wrapper around Koa providing a websocket middleware handler that is koa-router 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.6.0",
"debug": "^4.3.4",
"koa-compose": "^4.1.0",
"ws": "^8.5.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"koa": "^2.13.4",
"@koa/router": "^10.1.1",
"koa-route": "^3.2.0",
"mocha": "^9.2.2"
}
}