forked from wll8/express-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 744 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 744 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
{
"name": "@wll8/express-ws",
"version": "1.0.5",
"description": "Quickly implement websocket API in express",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"ws",
"websocket"
],
"author": "wll8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/wll8/express-ws.git"
},
"files": [
"dist"
],
"dependencies": {
"@types/express": "^4.17.13",
"@types/ws": "8.5.3",
"path-to-regexp": "0.1.7",
"ws": "7.5.5"
},
"devDependencies": {
"express": "4.17.3",
"ts-node": "^10.9.2",
"typescript": "^4.7.4"
}
}