package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "fresh",
  3. "description": "HTTP response freshness testing",
  4. "version": "0.5.0",
  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. "eslint": "3.16.0",
  20. "eslint-config-standard": "6.2.1",
  21. "eslint-plugin-promise": "3.4.2",
  22. "eslint-plugin-standard": "2.0.1",
  23. "istanbul": "0.4.5",
  24. "mocha": "1.21.5"
  25. },
  26. "files": [
  27. "HISTORY.md",
  28. "LICENSE",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "lint": "eslint .",
  36. "test": "mocha --reporter spec --bail --check-leaks 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. }