package.json 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "whatwg-mimetype",
  3. "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard",
  4. "keywords": [
  5. "content-type",
  6. "mime type",
  7. "mimesniff",
  8. "http",
  9. "whatwg"
  10. ],
  11. "version": "5.0.0",
  12. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  13. "license": "MIT",
  14. "repository": "jsdom/whatwg-mimetype",
  15. "main": "lib/index.js",
  16. "files": [
  17. "lib/"
  18. ],
  19. "scripts": {
  20. "test": "node --test",
  21. "coverage": "c8 node --test --experimental-test-coverage",
  22. "lint": "eslint",
  23. "pretest": "node scripts/get-latest-platform-tests.mjs"
  24. },
  25. "devDependencies": {
  26. "@domenic/eslint-config": "^4.0.1",
  27. "@exodus/bytes": "^1.9.0",
  28. "c8": "^10.1.3",
  29. "eslint": "^9.39.2",
  30. "printable-string": "^0.3.0"
  31. },
  32. "engines": {
  33. "node": ">=20"
  34. },
  35. "c8": {
  36. "reporter": [
  37. "html"
  38. ],
  39. "exclude": [
  40. "scripts/",
  41. "test/"
  42. ]
  43. }
  44. }