forked from b3nsn0w/koa-easy-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1000 Bytes
/
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
47
{
"name": "koa-easy-ws",
"version": "2.1.0",
"description": "Simple Koa middleware for websocket handling",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b3nsn0w/koa-easy-ws.git"
},
"keywords": [
"koa",
"websocket",
"ws"
],
"author": "Ben Snow <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/b3nsn0w/koa-easy-ws/issues"
},
"homepage": "https://github.com/b3nsn0w/koa-easy-ws#readme",
"dependencies": {
"debug": "^4.3.4"
},
"peerDependencies": {
"koa": ">=2",
"ws": ">=8"
},
"devDependencies": {
"chai": "4.3.6",
"koa": "2.13.4",
"koa-router": "12.0.0",
"mocha": "10.0.0",
"pre-commit": "1.2.2",
"promise": "8.1.0",
"request": "2.87.0",
"request-promise": "4.2.4",
"standard": "17.0.0",
"ws": "8.8.1"
},
"pre-commit": [
"test"
]
}