forked from jlcvp/fcm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "fcm-node",
"version": "1.1.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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlcvp/fcm-node/issues"
},
"homepage": "https://github.com/jlcvp/fcm-node",
"dependencies": {
"firebase-admin": "^4.1.3",
"mocha": "^3.2.0",
"retry": "^0.9.0"
},
"scripts": {
"test": "mocha",
"debugtest": "mocha --debug-brk $npm_package_options_mocha"
},
"directories": {
"test": "test"
},
"tonicExampleFilename": "example.js"
}