forked from gj/fastify-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1010 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1010 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
38
39
40
41
42
43
{
"name": "fastify-ws",
"version": "1.0.0",
"description": "Basic WebSocket support for Fastify built on the blazing fast ws and @clusterws/cws libraries.",
"main": "fastify-ws.js",
"types": "fastify-ws.d.ts",
"scripts": {
"test": "tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gj/fastify-ws.git"
},
"keywords": [
"fastify",
"websocket",
"ws",
"uws"
],
"author": "Gabe Jackson <gj@mail.co.de>",
"contributors": [
"lependu <lependu@protonmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gj/fastify-ws/issues"
},
"homepage": "https://github.com/gj/fastify-ws#readme",
"devDependencies": {
"eslint": "^6.1.0",
"fastify": "^2.7.1",
"pre-commit": "^1.2.2",
"tap": "^14.6.1"
},
"dependencies": {
"clusterws": "^3.3.0",
"@types/node": "^12.0.1",
"bufferutil": "^4.0.1",
"fastify-plugin": "^1.6.0",
"utf-8-validate": "^5.0.2",
"ws": "^7.1.1"
}
}