package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "accepts",
  3. "description": "Higher-level content negotiation",
  4. "version": "1.3.5",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "repository": "jshttp/accepts",
  11. "dependencies": {
  12. "mime-types": "~2.1.18",
  13. "negotiator": "0.6.1"
  14. },
  15. "devDependencies": {
  16. "eslint": "4.18.1",
  17. "eslint-config-standard": "11.0.0",
  18. "eslint-plugin-import": "2.9.0",
  19. "eslint-plugin-markdown": "1.0.0-beta.6",
  20. "eslint-plugin-node": "6.0.1",
  21. "eslint-plugin-promise": "3.6.0",
  22. "eslint-plugin-standard": "3.0.1",
  23. "istanbul": "0.4.5",
  24. "mocha": "~1.21.5"
  25. },
  26. "files": [
  27. "LICENSE",
  28. "HISTORY.md",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "lint": "eslint --plugin markdown --ext js,md .",
  36. "test": "mocha --reporter spec --check-leaks --bail test/",
  37. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  38. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  39. },
  40. "keywords": [
  41. "content",
  42. "negotiation",
  43. "accept",
  44. "accepts"
  45. ]
  46. }