package.json 993 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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": "2.3.0",
  12. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  13. "license": "MIT",
  14. "repository": "jsdom/whatwg-mimetype",
  15. "main": "lib/mime-type.js",
  16. "files": [
  17. "lib/"
  18. ],
  19. "scripts": {
  20. "test": "jest",
  21. "coverage": "jest --coverage",
  22. "lint": "eslint .",
  23. "pretest": "node scripts/get-latest-platform-tests.js"
  24. },
  25. "devDependencies": {
  26. "eslint": "^5.9.0",
  27. "jest": "^23.6.0",
  28. "printable-string": "^0.3.0",
  29. "request": "^2.88.0",
  30. "whatwg-encoding": "^1.0.5"
  31. },
  32. "jest": {
  33. "coverageDirectory": "coverage",
  34. "coverageReporters": [
  35. "lcov",
  36. "text-summary"
  37. ],
  38. "testEnvironment": "node",
  39. "testMatch": [
  40. "<rootDir>/test/**/*.js"
  41. ]
  42. }
  43. }