package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "cookie",
  3. "description": "HTTP server cookie parsing and serialization",
  4. "version": "0.4.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. "beautify-benchmark": "0.2.4",
  17. "benchmark": "2.1.4",
  18. "eslint": "6.8.0",
  19. "eslint-plugin-markdown": "1.0.2",
  20. "mocha": "7.1.1",
  21. "nyc": "15.0.1"
  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 --ui qunit test/",
  36. "test-ci": "nyc --reporter=text npm test",
  37. "test-cov": "nyc --reporter=html --reporter=text npm test",
  38. "version": "node scripts/version-history.js && git add HISTORY.md"
  39. }
  40. }