package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fresh",
  3. "description": "HTTP response freshness testing",
  4. "version": "0.5.2",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "fresh",
  13. "http",
  14. "conditional",
  15. "cache"
  16. ],
  17. "repository": "jshttp/fresh",
  18. "devDependencies": {
  19. "beautify-benchmark": "0.2.4",
  20. "benchmark": "2.1.4",
  21. "eslint": "3.19.0",
  22. "eslint-config-standard": "10.2.1",
  23. "eslint-plugin-import": "2.7.0",
  24. "eslint-plugin-markdown": "1.0.0-beta.6",
  25. "eslint-plugin-node": "5.1.1",
  26. "eslint-plugin-promise": "3.5.0",
  27. "eslint-plugin-standard": "3.0.1",
  28. "istanbul": "0.4.5",
  29. "mocha": "1.21.5"
  30. },
  31. "files": [
  32. "HISTORY.md",
  33. "LICENSE",
  34. "index.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.6"
  38. },
  39. "scripts": {
  40. "bench": "node benchmark/index.js",
  41. "lint": "eslint --plugin markdown --ext js,md .",
  42. "test": "mocha --reporter spec --bail --check-leaks test/",
  43. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  44. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  45. }
  46. }