package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "egg-session",
  3. "version": "3.3.0",
  4. "description": "session plugin for egg",
  5. "eggPlugin": {
  6. "name": "session"
  7. },
  8. "files": [
  9. "config",
  10. "app",
  11. "app.js"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:eggjs/egg-session.git"
  16. },
  17. "keywords": [
  18. "egg",
  19. "egg-plugin",
  20. "eggPlugin",
  21. "session",
  22. "cookie"
  23. ],
  24. "dependencies": {
  25. "koa-session": "^6.0.0"
  26. },
  27. "devDependencies": {
  28. "autod": "^2.10.1",
  29. "egg": "next",
  30. "egg-bin": "^4.3.5",
  31. "egg-ci": "^1.8.0",
  32. "egg-mock": "^3.13.1",
  33. "egg-redis": "^1.0.1",
  34. "eslint": "^4.10.0",
  35. "eslint-config-egg": "^5.1.1",
  36. "mz-modules": "^2.0.0",
  37. "supertest": "^3.0.0"
  38. },
  39. "engines": {
  40. "node": ">=8.0.0"
  41. },
  42. "scripts": {
  43. "lint": "eslint .",
  44. "test": "npm run lint -- --fix && egg-bin test",
  45. "test-local": "egg-bin test",
  46. "cov": "egg-bin cov",
  47. "ci": "npm run lint && npm run cov",
  48. "autod": "autod"
  49. },
  50. "ci": {
  51. "version": "8, 10, 12",
  52. "services": "redis-server",
  53. "type": "travis"
  54. },
  55. "author": "dead_horse"
  56. }