package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "egg-cookies",
  3. "version": "2.6.1",
  4. "description": "cookies module for egg",
  5. "files": [
  6. "lib",
  7. "index.d.ts"
  8. ],
  9. "main": "lib/cookies.js",
  10. "dependencies": {
  11. "debug": "^3.1.0",
  12. "scmp": "^2.0.0",
  13. "should-send-same-site-none": "^2.0.2",
  14. "utility": "^1.14.0"
  15. },
  16. "devDependencies": {
  17. "@types/node": "^10.9.4",
  18. "autod": "^3.0.1",
  19. "beautify-benchmark": "^0.2.4",
  20. "benchmark": "^2.1.4",
  21. "cookies": "^0.7.1",
  22. "egg-bin": "1",
  23. "egg-ci": "^1.1.0",
  24. "eslint": "^7.3.1",
  25. "eslint-config-egg": "^8.0.1",
  26. "git-contributor": "^1.1.0",
  27. "keygrip": "^1.0.2",
  28. "ts-node": "^7.0.1",
  29. "typescript": "^3.0.3"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/eggjs/egg-cookies.git"
  34. },
  35. "homepage": "https://github.com/eggjs/egg-cookies",
  36. "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
  37. "license": "MIT",
  38. "scripts": {
  39. "contributor": "git-contributor",
  40. "test": "npm run lint -- --fix && egg-bin test",
  41. "cov": "egg-bin cov",
  42. "lint": "eslint lib benchmark test",
  43. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  44. "autod": "autod"
  45. },
  46. "engines": {
  47. "node": ">= 10.0.0"
  48. },
  49. "ci": {
  50. "version": "10, 12, 14, 16, 18",
  51. "type": "github",
  52. "os": {
  53. "github": "linux"
  54. }
  55. }
  56. }