package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fresh",
  3. "description": "HTTP response freshness testing",
  4. "version": "2.0.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. "beautify-benchmark": "0.2.4",
  20. "benchmark": "2.1.4",
  21. "eslint": "8.12.0",
  22. "eslint-config-standard": "14.1.1",
  23. "eslint-plugin-import": "2.25.4",
  24. "eslint-plugin-markdown": "2.2.1",
  25. "eslint-plugin-node": "11.1.0",
  26. "eslint-plugin-promise": "6.0.0",
  27. "eslint-plugin-standard": "4.1.0",
  28. "mocha": "9.2.0",
  29. "nyc": "15.1.0"
  30. },
  31. "files": [
  32. "HISTORY.md",
  33. "LICENSE",
  34. "index.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.8"
  38. },
  39. "scripts": {
  40. "bench": "node benchmark/index.js",
  41. "lint": "eslint .",
  42. "test": "mocha --reporter spec --check-leaks --bail test/",
  43. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  44. "test-cov": "nyc --reporter=html --reporter=text npm test"
  45. }
  46. }