package.json 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "negotiator",
  3. "description": "HTTP content negotiation",
  4. "version": "0.6.2",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Federico Romero <federico.romero@outboxlabs.com>",
  8. "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "http",
  13. "content negotiation",
  14. "accept",
  15. "accept-language",
  16. "accept-encoding",
  17. "accept-charset"
  18. ],
  19. "repository": "jshttp/negotiator",
  20. "devDependencies": {
  21. "eslint": "5.16.0",
  22. "eslint-plugin-markdown": "1.0.0",
  23. "mocha": "6.1.4",
  24. "nyc": "14.0.0"
  25. },
  26. "files": [
  27. "lib/",
  28. "HISTORY.md",
  29. "LICENSE",
  30. "index.js",
  31. "README.md"
  32. ],
  33. "engines": {
  34. "node": ">= 0.6"
  35. },
  36. "scripts": {
  37. "lint": "eslint --plugin markdown --ext js,md .",
  38. "test": "mocha --reporter spec --check-leaks --bail test/",
  39. "test-cov": "nyc --reporter=html --reporter=text npm test",
  40. "test-travis": "nyc --reporter=text npm test"
  41. }
  42. }