You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  1. {
  2. "name": "cookie-parser",
  3. "description": "Parse HTTP request cookies",
  4. "version": "1.4.6",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  8. ],
  9. "license": "MIT",
  10. "repository": "expressjs/cookie-parser",
  11. "keywords": [
  12. "cookie",
  13. "middleware"
  14. ],
  15. "dependencies": {
  16. "cookie": "0.4.1",
  17. "cookie-signature": "1.0.6"
  18. },
  19. "devDependencies": {
  20. "eslint": "7.32.0",
  21. "eslint-config-standard": "14.1.1",
  22. "eslint-plugin-import": "2.25.2",
  23. "eslint-plugin-markdown": "2.2.1",
  24. "eslint-plugin-node": "11.1.0",
  25. "eslint-plugin-promise": "4.3.1",
  26. "eslint-plugin-standard": "4.1.0",
  27. "mocha": "9.1.3",
  28. "nyc": "15.1.0",
  29. "supertest": "6.1.6"
  30. },
  31. "files": [
  32. "LICENSE",
  33. "HISTORY.md",
  34. "index.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.8.0"
  38. },
  39. "scripts": {
  40. "lint": "eslint .",
  41. "test": "mocha --reporter spec --bail --check-leaks test/",
  42. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  43. "test-cov": "nyc --reporter=html --reporter=text npm test"
  44. }
  45. }