package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@overleaf/redis-wrapper",
  3. "version": "2.1.0",
  4. "description": "Redis wrapper for node which will either use cluster or single instance redis",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "Errors.js"
  9. ],
  10. "author": "Overleaf (https://www.overleaf.com)",
  11. "repository": "github:overleaf/redis-wrapper",
  12. "license": "ISC",
  13. "scripts": {
  14. "lint": "eslint --max-warnings 0 --format unix .",
  15. "lint:fix": "eslint --fix .",
  16. "format": "prettier-eslint $PWD'/**/*.js' --list-different",
  17. "format:fix": "prettier-eslint $PWD'/**/*.js' --write",
  18. "test": "mocha --recursive test/unit/src/",
  19. "test:ci": "npm run test"
  20. },
  21. "peerDependencies": {
  22. "@overleaf/o-error": "^3.1.0"
  23. },
  24. "dependencies": {
  25. "ioredis": "~4.27.1"
  26. },
  27. "devDependencies": {
  28. "@overleaf/o-error": "^3.3.1",
  29. "chai": "^4.3.4",
  30. "eslint": "^6.8.0",
  31. "eslint-config-prettier": "^6.10.1",
  32. "eslint-config-standard": "^14.1.1",
  33. "eslint-plugin-chai-expect": "^2.1.0",
  34. "eslint-plugin-chai-friendly": "^0.5.0",
  35. "eslint-plugin-import": "^2.20.2",
  36. "eslint-plugin-mocha": "^6.3.0",
  37. "eslint-plugin-node": "^11.1.0",
  38. "eslint-plugin-prettier": "^3.4.0",
  39. "eslint-plugin-promise": "^4.3.1",
  40. "eslint-plugin-standard": "^4.1.0",
  41. "@overleaf/logger": "^2.3.0",
  42. "mocha": "^8.3.2",
  43. "prettier": "^2.2.1",
  44. "prettier-eslint-cli": "^5.0.1",
  45. "sandboxed-module": "^2.0.4",
  46. "sinon": "^9.2.4"
  47. }
  48. }