-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "easy-chat-pushjs",
"version": "3.9.1",
"description": "Push Notifications using websockets, supports FCM, Slack and P2P.",
"main": "lib/index.js",
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bluebird": "^3.7.2",
"debug": "^4.3.1",
"has-binary": "^0.1.7",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.7",
"redis": "^4.0.2",
"simple-peer": "^9.9.3",
"socket.io": "^4.4.1",
"socket.io-p2p-server": "^1.2.0",
"to-array": "^0.1.4",
"uuid": "^8.3.2",
"zeromq": "^5.2.0"
},
"directories": {
"example": "examples"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/uuid": "^9.0.8",
"@types/zeromq": "^5.2.5",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3",
"why-is-node-running": "^2.2.0"
},
"scripts": {
"start": "pm2 start server.js && pm2 logs server --raw",
"build": "tsc",
"test": "mocha",
"prepare": "npm run build",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdamSEY/easy-chat-pushjs.git"
},
"keywords": [
"websocket",
"notifications",
"redis",
"ping",
"socketio",
"slack",
"fcm",
"fcm-notifications",
"push-notifications",
"android",
"ios",
"javascript",
"nodejs",
"webrtc",
"p2p"
],
"bugs": {
"url": "https://github.com/AdamSEY/easy-chat-pushjs/issues"
},
"homepage": "https://github.com/AdamSEY/easy-chat-pushjs#readme"
}