package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@overleaf/object-persistor",
  3. "version": "1.0.0",
  4. "description": "Module for storing objects in multiple backends, with fallback on 404 to assist migration between them",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run format && npm run test:unit",
  8. "test:unit": "mocha",
  9. "lint": "eslint src test *.js",
  10. "format": "prettier-eslint $PWD'/**/*.js' --list-different",
  11. "format:fix": "prettier-eslint $PWD'/**/*.js' --write"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "github.com:overleaf/object-persistor"
  16. },
  17. "author": "Overleaf (https://www.overleaf.com/)",
  18. "license": "AGPL-3.0",
  19. "dependencies": {
  20. "@google-cloud/storage": "^5.1.0",
  21. "@overleaf/o-error": "^2.1.0",
  22. "aws-sdk": "^2.696.0",
  23. "fast-crc32c": "^2.0.0",
  24. "glob": "^7.1.6",
  25. "logger-sharelatex": "^2.0.0",
  26. "node-uuid": "^1.4.8",
  27. "range-parser": "^1.2.1",
  28. "tiny-async-pool": "^1.1.0"
  29. },
  30. "devDependencies": {
  31. "chai": "^4.2.0",
  32. "chai-as-promised": "^7.1.1",
  33. "eslint-config-prettier": "^6.11.0",
  34. "eslint-config-standard": "^14.1.1",
  35. "eslint-plugin-chai-expect": "^2.1.0",
  36. "eslint-plugin-chai-friendly": "^0.6.0",
  37. "eslint-plugin-import": "^2.22.0",
  38. "eslint-plugin-mocha": "^7.0.1",
  39. "eslint-plugin-node": "^11.1.0",
  40. "eslint-plugin-prettier": "^3.1.4",
  41. "eslint-plugin-promise": "^4.2.1",
  42. "eslint-plugin-standard": "^4.0.1",
  43. "mocha": "^8.0.1",
  44. "mongodb": "^3.5.9",
  45. "prettier-eslint": "^11.0.0",
  46. "prettier-eslint-cli": "^5.0.0",
  47. "sandboxed-module": "^2.0.4",
  48. "sinon": "^9.0.2",
  49. "sinon-chai": "^3.5.0"
  50. }
  51. }