UNPKG

nestjs-minio

Version:
100 lines (99 loc) 2.37 kB
{ "name": "nestjs-minio", "version": "2.6.2", "description": "Minio object storage with nestjs", "author": "Rubin Bhandari", "license": "MIT", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "npx rimraf dist && tsc -p tsconfig.build.json", "prepare": "npm run build", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint '{src,test}/**/*.ts' --cache --fix", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand", "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch", "build:docs": "npx compodoc -p tsconfig.build.json -d docs -o -s --theme material" }, "keywords": [ "nestjs", "minio" ], "publishConfig": { "access": "public" }, "peerDependencies": { "@nestjs/common": ">7.0.0", "@nestjs/core": ">7.0.0" }, "dependencies": { "minio": "^8.0.1" }, "devDependencies": { "@compodoc/compodoc": "^1.1.25", "@nestjs/common": "^10.4.1", "@nestjs/core": "^10.4.1", "@nestjs/platform-express": "^10.4.1", "@nestjs/testing": "10.3.8", "@types/express": "4.17.21", "@types/jest": "29.5.12", "@types/supertest": "6.0.2", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "7.8.0", "cz-conventional-changelog": "3.3.0", "eslint": "^9.9.1", "eslint-plugin-import": "2.29.1", "husky": "^9.1.5", "jest": "29.7.0", "lint-staged": "^15.2.9", "prettier": "^3.3.3", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.1", "supertest": "7.0.0", "ts-jest": "29.1.2", "ts-node": "10.9.2", "tsconfig-paths": "4.2.0", "typescript": "5.4.5" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "coverageDirectory": "../coverage", "testEnvironment": "node" }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ "eslint --cache --fix", "prettier --write" ], "*.{json,md,scss,yaml,yml}": [ "prettier --write" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/NestCrafts/nestjs-minio.git" }, "bugs": { "url": "https://github.com/NestCrafts/nestjs-minio/issues" } }