-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"author": "Olivier Poitrey <rs@dailymotion.com>",
"name": "pushd",
"description": "Blazing fast multi-protocol mobile push notification service",
"version": "1.6.6",
"homepage": "https://github.com/rs/pushd",
"keywords": [
"push",
"notification",
"apns",
"gcm",
"fcm",
"ios",
"android",
"phone"
],
"repository": {
"type": "git",
"url": "git://github.com/rs/pushd.git"
},
"bin": {
"pushd-server": "./server.js"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node server.js",
"test": "mocha --exit"
},
"engines": {
"node": "~v18.12.1"
},
"dependencies": {
"@parse/node-apn": "^5.1.3",
"async": "^2.6.3",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"firebase-admin": "^12.5.0",
"hiredis": "^0.5.0",
"morgan": "^1.9.1",
"netmask": "^2.0.1",
"node-gcm": "^1.0.2",
"redis": "^3.1.1",
"winston": "^2.4.4"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rs/pushd/raw/master/LICENSE"
}
]
}