package.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "update-browserslist-db",
  3. "version": "1.1.0",
  4. "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
  5. "keywords": [
  6. "caniuse",
  7. "browsers",
  8. "target"
  9. ],
  10. "funding": [
  11. {
  12. "type": "opencollective",
  13. "url": "https://opencollective.com/browserslist"
  14. },
  15. {
  16. "type": "tidelift",
  17. "url": "https://tidelift.com/funding/github/npm/browserslist"
  18. },
  19. {
  20. "type": "github",
  21. "url": "https://github.com/sponsors/ai"
  22. }
  23. ],
  24. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  25. "license": "MIT",
  26. "repository": "browserslist/update-db",
  27. "types": "./index.d.ts",
  28. "exports": {
  29. ".": "./index.js",
  30. "./package.json": "./package.json"
  31. },
  32. "dependencies": {
  33. "escalade": "^3.1.2",
  34. "picocolors": "^1.0.1"
  35. },
  36. "peerDependencies": {
  37. "browserslist": ">= 4.21.0"
  38. },
  39. "bin": "cli.js"
  40. }