You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. {
  2. "name": "content-disposition",
  3. "description": "Create and parse Content-Disposition header",
  4. "version": "0.5.2",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  7. ],
  8. "license": "MIT",
  9. "keywords": [
  10. "content-disposition",
  11. "http",
  12. "rfc6266",
  13. "res"
  14. ],
  15. "repository": "jshttp/content-disposition",
  16. "devDependencies": {
  17. "eslint": "3.11.1",
  18. "eslint-config-standard": "6.2.1",
  19. "eslint-plugin-promise": "3.3.0",
  20. "eslint-plugin-standard": "2.0.1",
  21. "istanbul": "0.4.5",
  22. "mocha": "1.21.5"
  23. },
  24. "files": [
  25. "LICENSE",
  26. "HISTORY.md",
  27. "README.md",
  28. "index.js"
  29. ],
  30. "engines": {
  31. "node": ">= 0.6"
  32. },
  33. "scripts": {
  34. "lint": "eslint .",
  35. "test": "mocha --reporter spec --bail --check-leaks test/",
  36. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  37. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  38. }
  39. }