Node-Red configuration
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "moment-timezone",
  3. "version": "0.5.39",
  4. "description": "Parse and display moments in any timezone.",
  5. "homepage": "http://momentjs.com/timezone/",
  6. "author": "Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)",
  7. "keywords": [
  8. "moment",
  9. "date",
  10. "time",
  11. "timezone",
  12. "olson",
  13. "iana",
  14. "zone",
  15. "tz"
  16. ],
  17. "main": "./index.js",
  18. "typings": "./index.d.ts",
  19. "engines": {
  20. "node": "*"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/moment/moment-timezone.git"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/moment/moment-timezone/issues"
  28. },
  29. "license": "MIT",
  30. "dependencies": {
  31. "moment": ">= 2.9.0"
  32. },
  33. "devDependencies": {
  34. "grunt": "^1.5.3",
  35. "grunt-contrib-clean": "^2.0.0",
  36. "grunt-contrib-jshint": "^2.1.0",
  37. "grunt-contrib-nodeunit": "^2.0.0",
  38. "grunt-contrib-uglify": "^4.0.1",
  39. "grunt-exec": "^3.0.0",
  40. "typescript": "^3.5.1"
  41. },
  42. "jspm": {
  43. "main": "builds/moment-timezone-with-data",
  44. "shim": {
  45. "moment-timezone": {
  46. "deps": [
  47. "moment"
  48. ]
  49. }
  50. }
  51. },
  52. "scripts": {
  53. "test": "grunt"
  54. }
  55. }