package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "content-disposition",
  3. "description": "Create and parse Content-Disposition header",
  4. "version": "1.0.1",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "keywords": [
  8. "content-disposition",
  9. "http",
  10. "rfc6266",
  11. "res"
  12. ],
  13. "repository": "jshttp/content-disposition",
  14. "funding": {
  15. "type": "opencollective",
  16. "url": "https://opencollective.com/express"
  17. },
  18. "devDependencies": {
  19. "c8": "^10.1.2",
  20. "eslint": "7.32.0",
  21. "eslint-config-standard": "13.0.1",
  22. "eslint-plugin-import": "2.25.3",
  23. "eslint-plugin-markdown": "2.2.1",
  24. "eslint-plugin-node": "11.1.0",
  25. "eslint-plugin-promise": "5.2.0",
  26. "eslint-plugin-standard": "4.1.0"
  27. },
  28. "files": [
  29. "LICENSE",
  30. "HISTORY.md",
  31. "README.md",
  32. "index.js"
  33. ],
  34. "engines": {
  35. "node": ">=18"
  36. },
  37. "scripts": {
  38. "lint": "eslint .",
  39. "test": "node --test --test-reporter spec",
  40. "test-ci": "c8 --reporter=lcovonly --reporter=text npm test",
  41. "test-cov": "c8 --reporter=html --reporter=text npm test"
  42. }
  43. }