package.json 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "@parse/node-gcm",
  3. "description": "Easy interface for Google's Cloud Messaging service (now Firebase Cloud Messaging)",
  4. "version": "1.0.2",
  5. "author": "Marcus Farkas <toothlessgear@finitebox.com>",
  6. "contributors": [
  7. "Marcus Farkas <toothlessgear@finitebox.com>",
  8. "monkbroc <jvanier@gmail.com> (https://github.com/monkbroc)",
  9. "zlyinfinite (https://github.com/zlyinfinite)",
  10. "Yann Biancheri <yann.biancheri@gmail.com> (https://github.com/yannooo)",
  11. "Hamid Palo <hamid@fogcreek.com> (https://github.com/hamidp)",
  12. "Dotan J. Nahum <jondotan@gmail.com> (https://github.com/jondot)",
  13. "Max Rabin <rabin.max@gmail.com> (https://github.com/maxrabin)",
  14. "Olivier Poitrey <rs@dailymotion.com> (https://github.com/rs)",
  15. "George Miroshnykov <george.miroshnykov@gmail.com> (https://github.com/laggyluke)",
  16. "Alejandro Garcia Gil <alejandro@ideaknow.com> (https://github.com/Alegege)",
  17. "Ismael Gorissen <ismael.gorissen@gmail.com> (https://github.com/igorissen)",
  18. "Joris Verbogt <joris@notifica.re> (https://github.com/silentjohnny)",
  19. "goelvivek <goelvivek2011@gmail.com> (https://github.com/goelvivek)",
  20. "Lars Jacob <lars@jaclar.net> (https://github.com/jaclar)",
  21. "Roman Iakovlev <roman.iakovlev@here.com> (https://github.com/RomanIakovlev) ",
  22. "Roman Skvazh <roman.skvazh@gmail.com> (https://github.com/rskvazh)",
  23. "Jeremy Goldstein <jg-dev@live.com> (https://github.com/jg10)",
  24. "Adam Patacchiola <adam@2fours.com> (https://github.com/surespot)",
  25. "Ivan Longin <ivan.longin@infobip.com> (https://github.com/ilongin)",
  26. "Paul Bininda <paul@bininda.com> (https://github.com/pbininda)",
  27. "Matt Merkes <matt.merkes@gmail.com>",
  28. "Niels Roesen Abildgaard <niels.abildgaard@gmail.com> (https://github.com/hypesystem)",
  29. "Nonemoticoner <nonemoticoner@gmail.com> (https://github.com/Nonemoticoner)",
  30. "Simen Bekkhus <sbekkhus91@gmail.com> (https://github.com/SimenB)",
  31. "Alexander Johansson <alex@dice.fm> (https://github.com/KATT)",
  32. "Ashwin R <ashrko619@gmail.com> (https://github.com/ashrko619)",
  33. "Kaija Chang <kaija.chang@gmail.com> (https://github.com/kaija)",
  34. "Mo Kamioner <mkamioner@gmail.com> (https://github.com/mkamioner)",
  35. "Bastien Léonard <bastien.leonard@gmail.com> (https://github.com/bastienleonard)",
  36. "Elad Nava <eladnava@gmail.com> (https://github.com/eladnava)",
  37. "Marc Obrador <marcobrador89@gmail.com> (https://github.com/marcobrador)",
  38. "Chirag Choudhary <chirag200666@gmail.com> (https://github.com/chirag200666)",
  39. "Alexander Amin <alexander.amin@high5-it.de> (https://github.com/AlexAmin)",
  40. "Gaurav Nolkha <gaurav@swiftday.com> (https://github.com/vibgy)",
  41. "Jan Kowalleck <jan.kowalleck@gmail.com> (https://github.com/jkowalleck)",
  42. "Johan Forssell <johan@forssell.me> (https://github.com/johanforssell)"
  43. ],
  44. "repository": {
  45. "type": "git",
  46. "url": "http://github.com/parse-community/node-gcm.git",
  47. "web": "http://github.com/parse-community/node-gcm"
  48. },
  49. "keywords": [
  50. "google",
  51. "cloud",
  52. "push",
  53. "notifications",
  54. "android",
  55. "c2dm",
  56. "gcm",
  57. "fcm",
  58. "firebase",
  59. "ios",
  60. "apn",
  61. "messaging"
  62. ],
  63. "main": "index",
  64. "files": [
  65. "index.js",
  66. "lib/"
  67. ],
  68. "scripts": {
  69. "test": "mocha test/**/*Spec.js"
  70. },
  71. "dependencies": {
  72. "debug": "^3.1.0",
  73. "lodash": "^4.17.10",
  74. "request": "2.88.0"
  75. },
  76. "devDependencies": {
  77. "chai": "4.1.2",
  78. "mocha": "5.2.0",
  79. "proxyquire": "2.1.0",
  80. "sinon": "6.3.4"
  81. },
  82. "optionalDependencies": {},
  83. "engines": {
  84. "node": ">= 4"
  85. },
  86. "bugs": {
  87. "url": "https://github.com/ToothlessGear/node-gcm/issues"
  88. },
  89. "homepage": "https://github.com/ToothlessGear/node-gcm",
  90. "directories": {
  91. "test": "test"
  92. },
  93. "license": "MIT"
  94. }