-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 788 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 788 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
{
"name": "@luckbox/notification-client",
"version": "2.0.2",
"description": "A two-way Redis-based notification client allowing for pub/sub",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc -d",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuckboxGG/notification-client.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LuckboxGG/notification-client/issues"
},
"homepage": "https://github.com/LuckboxGG/notification-client#readme",
"dependencies": {
"@luckbox/logger-factory": "^4.0.0",
"ioredis": "^5.2.3"
},
"devDependencies": {
"@types/node": "^16.11.39",
"typescript": "^4.8.4"
}
}