-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "microstream-hub",
"version": "1.1.0",
"description": "Microstream Hub for managing WebSocket communication",
"main": "src/hub.js",
"scripts": {
"start": "node src/hub.js",
"commit": "cz",
"packGithubBuild": "rm -rf ./microstream-hub.tar.gz && tar -cvzf microstream-hub.tar.gz src CHANGELOG.md README.md LICENSE CONTRIBUTING.md package.json",
"release": "npm run packGithubBuild && semantic-release",
"postrelease": "bun install && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/arijitcodes/microstream-hub.git"
},
"author": "Arijit Banerjee <arijit.codes@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"socket.io": "^4.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^24.2.3"
},
"keywords": [
"microservices",
"websockets",
"real-time",
"communication",
"hub",
"microstream",
"microstream-hub"
]
}