package.json 719 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "macos-release",
  3. "version": "2.5.1",
  4. "description": "Get the name and version of a macOS release from the Darwin version",
  5. "license": "MIT",
  6. "repository": "sindresorhus/macos-release",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "macos",
  25. "os",
  26. "darwin",
  27. "operating",
  28. "system",
  29. "platform",
  30. "name",
  31. "title",
  32. "release",
  33. "version"
  34. ],
  35. "devDependencies": {
  36. "ava": "^1.4.1",
  37. "tsd": "^0.7.1",
  38. "xo": "^0.24.0"
  39. }
  40. }