package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "egg-redis",
  3. "version": "2.4.0",
  4. "description": "Redis plugin for egg",
  5. "eggPlugin": {
  6. "name": "redis"
  7. },
  8. "files": [
  9. "index.d.ts",
  10. "app.js",
  11. "agent.js",
  12. "lib",
  13. "config"
  14. ],
  15. "types": "./index.d.ts",
  16. "keywords": [
  17. "egg",
  18. "eggPlugin",
  19. "egg-plugin",
  20. "redis",
  21. "database"
  22. ],
  23. "dependencies": {
  24. "@types/ioredis": "^4.0.10",
  25. "await-first": "^1.0.0",
  26. "ioredis": "^4.9.0"
  27. },
  28. "devDependencies": {
  29. "@types/node": "^10.9.4",
  30. "autod": "^3.1.0",
  31. "egg": "^2.21.1",
  32. "egg-bin": "^4.13.0",
  33. "egg-ci": "^1.11.0",
  34. "egg-mock": "^3.22.2",
  35. "eslint": "^5.16.0",
  36. "eslint-config-egg": "^7.3.1",
  37. "supertest": "^4.0.2",
  38. "typescript": "^3.4.5",
  39. "utility": "^1.9.0"
  40. },
  41. "engines": {
  42. "node": ">=6.0.0"
  43. },
  44. "scripts": {
  45. "test": "npm run lint -- --fix && npm run test-local",
  46. "test-local": "egg-bin test",
  47. "cov": "egg-bin cov",
  48. "lint": "eslint .",
  49. "ci": "npm run lint && npm run cov",
  50. "autod": "autod"
  51. },
  52. "ci": {
  53. "type": "travis",
  54. "version": "8, 10, 11",
  55. "license": true,
  56. "services": "redis-server"
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": "git+https://github.com/eggjs/egg-redis.git"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/eggjs/egg/issues"
  64. },
  65. "homepage": "https://github.com/eggjs/egg-redis#readme",
  66. "author": "jtyjty99999",
  67. "license": "MIT"
  68. }