forked from stas-ut21/ws-await
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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
48
49
{
"name": "ws-await",
"version": "4.2.3",
"description": "Modification of the module ws to wait for a response",
"keywords": [
"ws",
"websocket",
"promise",
"client",
"protocol",
"WebSocket",
"WebSockets",
"real-time",
"await",
"ws",
"ws-await"
],
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"scripts": {
"test": "eslint ./ && nyc --reporter=html --reporter=text mocha test/*.test.js --exit",
"lint": "eslint index.js lib/websocket.js",
"lint-fix": "eslint --fix index.js lib/websocket.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stas-ut21/ws-await.git"
},
"author": "Stanislav Utkin <stas.ut21@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stas-ut21/ws-await/issues"
},
"homepage": "https://github.com/stas-ut21/ws-await",
"dependencies": {
"ws": "7.4.5"
},
"devDependencies": {
"@types/ws": "7.4.2",
"eslint": "7.25.0",
"eslint-config-google": "0.14.0",
"mocha": "8.3.2",
"nyc": "15.1.0"
}
}