package.json 1.4 KB

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