package.json 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "os-name",
  3. "version": "4.0.1",
  4. "description": "Get the name of the current operating system. Example: macOS Sierra",
  5. "license": "MIT",
  6. "repository": "sindresorhus/os-name",
  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": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "os",
  25. "operating",
  26. "system",
  27. "platform",
  28. "name",
  29. "title",
  30. "release",
  31. "version",
  32. "macos",
  33. "windows",
  34. "linux"
  35. ],
  36. "dependencies": {
  37. "macos-release": "^2.5.0",
  38. "windows-release": "^4.0.0"
  39. },
  40. "devDependencies": {
  41. "@types/node": "^14.6.2",
  42. "ava": "^2.4.0",
  43. "tsd": "^0.13.1",
  44. "xo": "^0.33.0"
  45. }
  46. }