package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "cookie",
  3. "description": "HTTP server cookie parsing and serialization",
  4. "version": "0.4.0",
  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": "5.16.0",
  19. "eslint-plugin-markdown": "1.0.0",
  20. "istanbul": "0.4.5",
  21. "mocha": "6.1.4"
  22. },
  23. "files": [
  24. "HISTORY.md",
  25. "LICENSE",
  26. "README.md",
  27. "index.js"
  28. ],
  29. "engines": {
  30. "node": ">= 0.6"
  31. },
  32. "scripts": {
  33. "bench": "node benchmark/index.js",
  34. "lint": "eslint --plugin markdown --ext js,md .",
  35. "test": "mocha --reporter spec --bail --check-leaks test/",
  36. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  37. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  38. "version": "node scripts/version-history.js && git add HISTORY.md"
  39. }
  40. }