package.json 864 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "update-browserslist-db",
  3. "version": "1.0.9",
  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. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  21. "license": "MIT",
  22. "repository": "browserslist/update-db",
  23. "types": "./index.d.ts",
  24. "exports": {
  25. ".": "./index.js",
  26. "./package.json": "./package.json"
  27. },
  28. "dependencies": {
  29. "escalade": "^3.1.1",
  30. "picocolors": "^1.0.0"
  31. },
  32. "peerDependencies": {
  33. "browserslist": ">= 4.21.0"
  34. },
  35. "bin": {
  36. "browserslist-lint": "cli.js"
  37. }
  38. }