@eleven-am/nestjs-storage
Version:
A NestJS module for uploading files to cloud storage providers
79 lines (78 loc) • 2.05 kB
JSON
{
"name": "@eleven-am/nestjs-storage",
"version": "0.0.22",
"author": "Roy OSSAI",
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"description": "A NestJS module for uploading files to cloud storage providers",
"keywords": [
"nestjs",
"storage",
"cloud",
"aws",
"s3",
"google",
"blob"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"publishToNpm": "npm version patch && npm publish",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"pipeline": "npm run lint && npm run build && npm run publishToNpm"
},
"dependencies": {
"@azure/storage-blob": "^12.27.0",
"aws-sdk": "^2.1692.0",
"googleapis": "^149.0.0",
"zod": "^3.25.20"
},
"devDependencies": {
"@nestjs/cli": "^11.0.7",
"@nestjs/common": "^11.1.1",
"@nestjs/core": "^11.1.1",
"@nestjs/schematics": "^11.0.5",
"@nestjs/testing": "^11.1.1",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}