package.json 850 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "cookie",
  3. "description": "HTTP server cookie parsing and serialization",
  4. "version": "0.3.1",
  5. "author": "Roman Shtylman <shtylman@gmail.com>",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  8. ],
  9. "license": "MIT",
  10. "keywords": [
  11. "cookie",
  12. "cookies"
  13. ],
  14. "repository": "jshttp/cookie",
  15. "devDependencies": {
  16. "istanbul": "0.4.3",
  17. "mocha": "1.21.5"
  18. },
  19. "files": [
  20. "HISTORY.md",
  21. "LICENSE",
  22. "README.md",
  23. "index.js"
  24. ],
  25. "engines": {
  26. "node": ">= 0.6"
  27. },
  28. "scripts": {
  29. "test": "mocha --reporter spec --bail --check-leaks test/",
  30. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  31. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  32. }
  33. }