forked from gj/fastify-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 889 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
{
"name": "fastify-simple-ws",
"version": "1.0.3",
"description": "Simple WebSocket support for Fastify.",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oransel/fastify-simple-ws.git"
},
"keywords": [
"fastify",
"websocket",
"ws"
],
"author": "Mustafa Oransel",
"license": "MIT",
"bugs": {
"url": "https://github.com/oransel/fastify-simple-ws/issues"
},
"homepage": "https://github.com/oransel/fastify-simple-ws#readme",
"devDependencies": {
"eslint": "^4.17.0",
"fastify": "^1.4.0",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap": "^10.7.2"
},
"dependencies": {
"bufferutil": "^3.0.5",
"fastify-plugin": "^1.2.0",
"utf-8-validate": "^4.0.2",
"ws": "^5.2.1"
}
}