| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@overleaf/object-persistor",
- "version": "1.0.2",
- "description": "Module for storing objects in multiple backends, with fallback on 404 to assist migration between them",
- "main": "index.js",
- "scripts": {
- "test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
- "test:unit": "mocha --exit test/**/*.{js,cjs}",
- "lint": "eslint --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
- "lint:fix": "eslint --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
- "format": "prettier --list-different $PWD/'**/*.{js,cjs,ts}'",
- "format:fix": "prettier --write $PWD/'**/*.{js,cjs,ts}'",
- "test:ci": "npm run test:unit",
- "types:check": "tsc --noEmit"
- },
- "repository": {
- "type": "git",
- "url": "github.com:overleaf/object-persistor"
- },
- "author": "Overleaf (https://www.overleaf.com/)",
- "license": "AGPL-3.0",
- "dependencies": {
- "@aws-sdk/client-s3": "^3.864.0",
- "@aws-sdk/lib-storage": "^3.864.0",
- "@aws-sdk/node-http-handler": "^3.370.0",
- "@aws-sdk/s3-request-presigner": "^3.864.0",
- "@google-cloud/storage": "^6.10.1",
- "@overleaf/logger": "*",
- "@overleaf/metrics": "*",
- "@overleaf/o-error": "*",
- "@overleaf/stream-utils": "*",
- "fast-crc32c": "overleaf/node-fast-crc32c#aae6b2a4c7a7a159395df9cc6c38dfde702d6f51",
- "glob": "^12.0.0",
- "range-parser": "^1.2.1",
- "tiny-async-pool": "^1.1.0"
- },
- "devDependencies": {
- "chai": "^4.3.6",
- "chai-as-promised": "^7.1.1",
- "mocha": "^11.1.0",
- "mocha-junit-reporter": "^2.2.1",
- "mocha-multi-reporters": "^1.5.1",
- "mock-fs": "^5.2.0",
- "mongodb": "6.12.0",
- "sandboxed-module": "^2.0.4",
- "sinon": "^9.2.4",
- "sinon-chai": "^3.7.0",
- "typescript": "^5.0.4"
- }
- }
|