-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1008 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.1.1"
},
"peerDependencies": {
"koa": ">=2",
"ws": ">=8"
},
"devDependencies": {
"chai": "^4.1.2",
"koa": "^2.13.4",
"koa-router": "^7.4.0",
"mocha": "^9.2.2",
"pre-commit": "^1.2.2",
"promise": "^8.0.3",
"request": "^2.87.0",
"request-promise": "^4.2.4",
"standard": "^16.0.4",
"ws": "^8.5.0"
},
"pre-commit": [
"test"
]
}