-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 912 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
{
"name": "pushflow",
"version": "1.0.0",
"description": "A distributed, event-driven, real-time push notification framework built using microservices, Redis Pub/Sub, and WebSocket-based delivery.",
"homepage": "https://github.com/pyankie/pushflow#readme",
"bugs": {
"url": "https://github.com/pyankie/pushflow/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pyankie/pushflow.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"format:fix": "biome format --write",
"format": "biome format",
"lint:fix": "biome lint --fix",
"lint": "biome lint",
"lint:check": "biome check"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"husky": "^9.1.7"
}
}