package.json 1011 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "negotiator",
  3. "description": "HTTP content negotiation",
  4. "version": "0.6.1",
  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. "istanbul": "0.4.3",
  22. "mocha": "~1.21.5"
  23. },
  24. "files": [
  25. "lib/",
  26. "HISTORY.md",
  27. "LICENSE",
  28. "index.js",
  29. "README.md"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "test": "mocha --reporter spec --check-leaks --bail 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. }