package.json 733 B

123456789101112131415161718192021222324
  1. {
  2. "name": "http-cache-semantics",
  3. "version": "4.1.0",
  4. "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies",
  5. "repository": "https://github.com/kornelski/http-cache-semantics.git",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "mocha"
  9. },
  10. "files": [
  11. "index.js"
  12. ],
  13. "author": "Kornel Lesiński <kornel@geekhood.net> (https://kornel.ski/)",
  14. "license": "BSD-2-Clause",
  15. "devDependencies": {
  16. "eslint": "^5.13.0",
  17. "eslint-plugin-prettier": "^3.0.1",
  18. "husky": "^0.14.3",
  19. "lint-staged": "^8.1.3",
  20. "mocha": "^5.1.0",
  21. "prettier": "^1.14.3",
  22. "prettier-eslint-cli": "^4.7.1"
  23. }
  24. }