forked from nandarustam/fcm-push
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "fcm-node",
"version": "1.6.1",
"description": "A Node.JS simple interface to Google's Firebase Cloud Messaging (FCM). Supports both android and iOS, including topic messages, and parallel calls.\nAditionally it also keeps the callback behavior for the new firebase messaging service.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jlcvp/fcm-node.git"
},
"keywords": [
"fcm",
"gcm",
"push",
"notification",
"push notification",
"firebase",
"firebase cloud messaging",
"google",
"android",
"ios",
"topic message",
"parallel send"
],
"author": "Leonardo Pereira <jlcvp@cin.ufpe.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlcvp/fcm-node/issues"
},
"homepage": "https://github.com/jlcvp/fcm-node",
"dependencies": {
"firebase-admin": "^9.6.0",
"https-proxy-agent": "^5.0.0",
"retry": "^0.12.0",
"snyk": "^1.518.0"
},
"devDependencies": {
"mocha": "^8.3.2"
},
"scripts": {
"test": "mocha --exit",
"debugtest": "mocha --debug-brk $npm_package_options_mocha --exit",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"directories": {
"test": "test"
},
"tonicExampleFilename": "example.js",
"snyk": true
}