package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "test:ci": "npm run test:unit"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "github.com:overleaf/object-persistor"
  17. },
  18. "author": "Overleaf (https://www.overleaf.com/)",
  19. "license": "AGPL-3.0",
  20. "dependencies": {
  21. "@google-cloud/storage": "^5.1.2",
  22. "@overleaf/o-error": "^3.0.0",
  23. "aws-sdk": "^2.718.0",
  24. "fast-crc32c": "^2.0.0",
  25. "glob": "^7.1.6",
  26. "logger-sharelatex": "^2.1.1",
  27. "node-uuid": "^1.4.8",
  28. "range-parser": "^1.2.1",
  29. "tiny-async-pool": "^1.1.0"
  30. },
  31. "devDependencies": {
  32. "chai": "^4.2.0",
  33. "chai-as-promised": "^7.1.1",
  34. "eslint-config-prettier": "^6.11.0",
  35. "eslint-config-standard": "^14.1.1",
  36. "eslint-plugin-chai-expect": "^2.2.0",
  37. "eslint-plugin-chai-friendly": "^0.6.0",
  38. "eslint-plugin-import": "^2.22.0",
  39. "eslint-plugin-mocha": "^7.0.1",
  40. "eslint-plugin-node": "^11.1.0",
  41. "eslint-plugin-prettier": "^3.1.4",
  42. "eslint-plugin-promise": "^4.2.1",
  43. "eslint-plugin-standard": "^4.0.1",
  44. "mocha": "^8.0.1",
  45. "mongodb": "^3.5.9",
  46. "prettier-eslint": "^11.0.0",
  47. "prettier-eslint-cli": "^5.0.0",
  48. "sandboxed-module": "^2.0.4",
  49. "sinon": "^9.0.2",
  50. "sinon-chai": "^3.5.0"
  51. }
  52. }