package.json 789 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "windows-release",
  3. "version": "4.0.0",
  4. "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/windows-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": ">=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. "win",
  26. "win32",
  27. "windows",
  28. "operating",
  29. "system",
  30. "platform",
  31. "name",
  32. "title",
  33. "release",
  34. "version"
  35. ],
  36. "dependencies": {
  37. "execa": "^4.0.2"
  38. },
  39. "devDependencies": {
  40. "ava": "^2.4.0",
  41. "tsd": "^0.13.1",
  42. "xo": "^0.33.0"
  43. }
  44. }