-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 896 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": "wsprocessor",
"version": "1.0.5",
"description": "A lightweight processor for websocket connections, providing acknowledged messages, error handling and connection status monitoring. The same code runs on client and server.",
"main": "wsProcessor.cjs",
"directories": {
"example": "example"
},
"files": ["*.", "/browser/*"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retfah/wsProcessor.git"
},
"keywords": [
"websocket",
"javascript",
"communication",
"protocol",
"messages",
"request",
"response",
"heartbeat",
"acknowledge",
"logging",
"error",
"handling",
"http"
],
"author": "Reto Fahrni",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"ws":"^7.4.0",
"express":"^4.0.0"
}
}