package.json 658 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "should-send-same-site-none",
  3. "version": "2.0.5",
  4. "description": "A simple utility to detect incompatible user agents for `SameSite=None` cookie attribute",
  5. "keywords": [
  6. "Express",
  7. "samesite",
  8. "cookie",
  9. "middleware"
  10. ],
  11. "main": "index.js",
  12. "types": "index.d.ts",
  13. "scripts": {
  14. "test": "jest --detectOpenHandles"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/linsight/should-send-same-site-none.git"
  19. },
  20. "author": "David Lin",
  21. "license": "MIT",
  22. "devDependencies": {
  23. "@types/express": "^4.17.1",
  24. "express": "^4.17.1",
  25. "jest": "^25.5.1",
  26. "supertest": "^4.0.2"
  27. }
  28. }