package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "cookie",
  3. "description": "HTTP server cookie parsing and serialization",
  4. "version": "0.4.2",
  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. "beautify-benchmark": "0.2.4",
  17. "benchmark": "2.1.4",
  18. "eslint": "7.32.0",
  19. "eslint-plugin-markdown": "2.2.1",
  20. "mocha": "9.2.0",
  21. "nyc": "15.1.0",
  22. "top-sites": "1.1.85"
  23. },
  24. "files": [
  25. "HISTORY.md",
  26. "LICENSE",
  27. "README.md",
  28. "index.js"
  29. ],
  30. "engines": {
  31. "node": ">= 0.6"
  32. },
  33. "scripts": {
  34. "bench": "node benchmark/index.js",
  35. "lint": "eslint .",
  36. "test": "mocha --reporter spec --bail --check-leaks --ui qunit test/",
  37. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  38. "test-cov": "nyc --reporter=html --reporter=text npm test",
  39. "update-bench": "node scripts/update-benchmark.js",
  40. "version": "node scripts/version-history.js && git add HISTORY.md"
  41. },
  42. "__npminstall_done": true,
  43. "_from": "cookie@0.4.2",
  44. "_resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.4.2.tgz"
  45. }