Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "cron",
  3. "description": "Cron jobs for your node",
  4. "version": "1.8.2",
  5. "author": "Nick Campbell <nicholas.j.campbell@gmail.com> (http://github.com/ncb000gt)",
  6. "bugs": {
  7. "url": "http://github.com/kelektiv/node-cron/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "http://github.com/kelektiv/node-cron.git"
  12. },
  13. "main": "lib/cron",
  14. "scripts": {
  15. "test": "jest"
  16. },
  17. "dependencies": {
  18. "moment-timezone": "^0.5.x"
  19. },
  20. "devDependencies": {
  21. "chai": "~4.2.x",
  22. "eslint": "~6.3.x",
  23. "eslint-config-prettier": "~6.2.x",
  24. "eslint-config-standard": "~14.1.x",
  25. "eslint-plugin-import": "~2.18.x",
  26. "eslint-plugin-jest": "^22.17.0",
  27. "eslint-plugin-node": "~10.0.x",
  28. "eslint-plugin-prettier": "~3.1.x",
  29. "eslint-plugin-promise": "~4.2.x",
  30. "eslint-plugin-standard": "~4.0.x",
  31. "jest": "^24.9.0",
  32. "prettier": "~1.18.x",
  33. "sinon": "~7.4.x"
  34. },
  35. "keywords": [
  36. "cron",
  37. "node cron",
  38. "node-cron",
  39. "schedule",
  40. "scheduler",
  41. "cronjob",
  42. "cron job"
  43. ],
  44. "license": "MIT",
  45. "contributors": [
  46. "Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
  47. "James Padolsey <> (https://github.com/jamespadolsey)",
  48. "Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
  49. "Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
  50. "Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
  51. "humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
  52. "Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
  53. "Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
  54. "Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
  55. "Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
  56. "Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
  57. "Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
  58. "Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
  59. "Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
  60. ]
  61. }