package.json 686 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "lune",
  3. "version": "0.4.1",
  4. "description": "Calculate the phases of the moon",
  5. "keywords": [
  6. "lune",
  7. "moon",
  8. "phase",
  9. "phases",
  10. "lunar"
  11. ],
  12. "homepage": "https://github.com/ryanseys/lune",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/ryanseys/lune.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/ryanseys/lune/issues",
  19. "email": "ryan@ryanseys.com"
  20. },
  21. "engines": {
  22. "node": ">=4.0.0"
  23. },
  24. "main": "lib/lune.js",
  25. "license": "Apache-2.0",
  26. "devDependencies": {
  27. "chai": "~4.2.0",
  28. "mocha": "~6.1.4",
  29. "standard": "^12.0.1"
  30. },
  31. "scripts": {
  32. "test": "standard && mocha --reporter min"
  33. }
  34. }