package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "content-disposition",
  3. "description": "Create and parse Content-Disposition header",
  4. "version": "0.5.4",
  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. "dependencies": {
  15. "safe-buffer": "5.2.1"
  16. },
  17. "devDependencies": {
  18. "deep-equal": "1.0.1",
  19. "eslint": "7.32.0",
  20. "eslint-config-standard": "13.0.1",
  21. "eslint-plugin-import": "2.25.3",
  22. "eslint-plugin-markdown": "2.2.1",
  23. "eslint-plugin-node": "11.1.0",
  24. "eslint-plugin-promise": "5.2.0",
  25. "eslint-plugin-standard": "4.1.0",
  26. "istanbul": "0.4.5",
  27. "mocha": "9.1.3"
  28. },
  29. "files": [
  30. "LICENSE",
  31. "HISTORY.md",
  32. "README.md",
  33. "index.js"
  34. ],
  35. "engines": {
  36. "node": ">= 0.6"
  37. },
  38. "scripts": {
  39. "lint": "eslint .",
  40. "test": "mocha --reporter spec --bail --check-leaks test/",
  41. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  42. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  43. }
  44. }