UNPKG

@qrvey/object-storage

Version:

![install size](https://packagephobia.com/badge?p=%40qrvey%2Fobject-storage) ![coverage](https://img.shields.io/badge/unit_test_coverage-8%25-brightgreen)

56 lines (55 loc) 1.72 kB
{ "name": "@qrvey/object-storage", "types": "dist/types/index.d.ts", "main": "dist/cjs/index.js", "version": "1.0.0", "license": "MIT", "exports": { ".": { "import": "./dist/esm/index.mjs", "require": "./dist/cjs/index.js", "default": "./dist/cjs/index.js" } }, "scripts": { "test": "jest", "test:cov": "jest --coverage && chmod +x ./coverageReader.sh && sh ./coverageReader.sh", "type-check": "tsc", "build:clean": "rm -rf dist", "build:compile:cjs": "tsup --config ./tsup.config.cjs.ts", "build:compile:esm": "tsup --config ./tsup.config.esm.ts", "build:compile:types": "tsup --config ./tsup.config.types.ts", "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types", "build": "yarn build:clean && yarn build:compile", "prepare-publish": "yarn install && yarn test:cov && yarn build", "publish-package": "yarn prepare-publish && npm publish" }, "dependencies": { "@aws-sdk/client-s3": "3.x", "@aws-sdk/lib-storage": "3.x", "@aws-sdk/s3-request-presigner": "3.x", "@azure/storage-blob": "12.23.0" }, "devDependencies": { "@types/jest": "29.5.5", "auto-version-js": "0.3.10", "eslint-config-custom": "*", "jest": "29.7.0", "ts-jest": "29.1.1", "tsconfig": "*", "tsup": "7.2.0", "typescript": "5.2.2" }, "publishConfig": { "access": "public" }, "files": [ "dist/*" ], "keywords": [ "qrvey", "aws lambda", "fetch", "rest" ] }