package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@overleaf/redis-wrapper",
  3. "version": "2.0.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 .",
  15. "format": "prettier-eslint $PWD'/**/*.js' --list-different",
  16. "format:fix": "prettier-eslint $PWD'/**/*.js' --write",
  17. "test": "mocha --recursive test/unit/src/"
  18. },
  19. "peerDependencies": {
  20. "@overleaf/o-error": "^3.1.0"
  21. },
  22. "dependencies": {
  23. "ioredis": "~4.27.1"
  24. },
  25. "devDependencies": {
  26. "@overleaf/o-error": "^3.3.1",
  27. "chai": "^4.3.4",
  28. "eslint": "^6.8.0",
  29. "eslint-config-prettier": "^6.10.1",
  30. "eslint-config-standard": "^14.1.1",
  31. "eslint-plugin-chai-expect": "^2.1.0",
  32. "eslint-plugin-chai-friendly": "^0.5.0",
  33. "eslint-plugin-import": "^2.20.2",
  34. "eslint-plugin-mocha": "^6.3.0",
  35. "eslint-plugin-node": "^11.1.0",
  36. "eslint-plugin-prettier": "^3.4.0",
  37. "eslint-plugin-promise": "^4.3.1",
  38. "eslint-plugin-standard": "^4.1.0",
  39. "logger-sharelatex": "^2.2.0",
  40. "mocha": "^8.3.2",
  41. "prettier": "^2.2.1",
  42. "prettier-eslint-cli": "^5.0.1",
  43. "sandboxed-module": "^2.0.4",
  44. "sinon": "^9.2.4"
  45. }
  46. }