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 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "suncalc",
  3. "version": "1.9.0",
  4. "description": "A tiny JavaScript library for calculating sun/moon positions and phases.",
  5. "homepage": "https://github.com/mourner/suncalc",
  6. "keywords": [
  7. "sun",
  8. "astronomy",
  9. "math",
  10. "calculation",
  11. "sunrise",
  12. "sunset",
  13. "twilight",
  14. "moon",
  15. "illumination"
  16. ],
  17. "author": "Vladimir Agafonkin",
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/mourner/suncalc.git"
  21. },
  22. "main": "suncalc.js",
  23. "devDependencies": {
  24. "eslint": "^8.8.0",
  25. "eslint-config-mourner": "^2.0.1",
  26. "tape": "^5.5.0"
  27. },
  28. "eslintConfig": {
  29. "extends": "mourner",
  30. "rules": {
  31. "indent": 0,
  32. "array-bracket-spacing": 0,
  33. "strict": 0,
  34. "brace-style": 0
  35. },
  36. "env": {
  37. "amd": true
  38. }
  39. },
  40. "files": [
  41. "suncalc.js"
  42. ],
  43. "scripts": {
  44. "pretest": "eslint suncalc.js test.js",
  45. "test": "node test.js",
  46. "prepublishOnly": "npm test"
  47. },
  48. "jshintConfig": {
  49. "quotmark": "single",
  50. "trailing": true,
  51. "unused": true
  52. }
  53. }