-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 963 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
{
"name": "ws-subscribe-broadcast",
"version": "0.2.6",
"description": "Simple websocket server lets you subscribe and broadcast",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --detectOpenHandles"
},
"bin": {
"ws-subscribe-broadcast": "./bin/ws-subscribe-broadcast"
},
"type": "module",
"keywords": [
"websocket",
"frontpageengine",
"wordpress",
"wordpress-vip"
],
"author": "Jason Norwood-Young <[email protected]>",
"license": "MIT",
"dependencies": {
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"mock-socket": "^9.2.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.1.0"
},
"repository": "https://github.com/MaverickEngine/ws-subscribe-broadcast"
}