-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.29 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
{
"author": "Olivier Poitrey <[email protected]>",
"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": "~10.16.3"
},
"dependencies": {
"@parse/node-apn": "^4.0.0",
"async": "^2.6.3",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"hiredis": "^0.5.0",
"morgan": "^1.9.1",
"netmask": "^1.0.6",
"node-gcm": "^1.0.2",
"redis": "^2.8.0",
"winston": "^2.4.4"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rs/pushd/raw/master/LICENSE"
}
]
}