package.json 694 B

12345678910111213141516171819202122
  1. {
  2. "name": "http-cache-semantics",
  3. "version": "3.8.1",
  4. "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies",
  5. "repository": "https://github.com/pornel/http-cache-semantics.git",
  6. "main": "node4/index.js",
  7. "scripts": {
  8. "compile": "babel -d node4/ index.js; babel -d node4/test test",
  9. "prepublish": "npm run compile",
  10. "test": "npm run compile; mocha node4/test"
  11. },
  12. "files": [
  13. "node4/index.js"
  14. ],
  15. "author": "Kornel Lesiński <kornel@geekhood.net> (https://kornel.ski/)",
  16. "license": "BSD-2-Clause",
  17. "devDependencies": {
  18. "babel-cli": "^6.24.1",
  19. "babel-preset-env": "^1.6.1",
  20. "mocha": "^3.4.2"
  21. }
  22. }