nestjs-multer-extended-aws-latest
Version:
Extended MulterModule for NestJS Latest AWS SDK
115 lines (114 loc) • 3.36 kB
JSON
{
"name": "nestjs-multer-extended-aws-latest",
"version": "1.4.2",
"description": "Extended MulterModule for NestJS Latest AWS SDK",
"author": "Rameshwar Trivedi <trivedirameshwar@gmail.com>",
"license": "MIT",
"url": "https://github.com/iamrameshwar/nestjs-multer-extended",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"commit": "git-cz",
"coverage": "jest -c ./tests/jest-e2e.json --runInBand --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --runInBand --coverage",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand --coverage",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint --fix -c tslint.json 'lib/**/*{.ts,.tsx}'",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"repository": {
"type": "git",
"url": "https://github.com/iamrameshwar/nestjs-multer-extended"
},
"keywords": [
"nestjs",
"nest",
"multer",
"multer-sharp",
"sharp",
"file upload",
"file interceptor",
"extend",
"extended",
"aws",
"s3"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@nestjs/common": "^7.6.15",
"@nestjs/platform-express": "^7.6.15"
},
"dependencies": {
"aws-sdk": "^2.875.0",
"mime-types": "^2.1.29",
"sharp": "^0.28.0"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@nestjs/platform-express": "7.6.15",
"@nestjs/testing": "7.6.15",
"@types/express": "4.17.11",
"@types/jest": "26.0.22",
"@types/jest-when": "2.7.2",
"@types/mime-types": "2.1.0",
"@types/multer": "1.4.5",
"@types/node": "14.14.37",
"@types/sharp": "0.27.2",
"@types/sinon": "9.0.11",
"@types/supertest": "2.0.10",
"commitizen": "4.2.3",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"husky": "6.0.0",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest-when": "3.2.1",
"lint-staged": "10.5.4",
"nestjs-config": "1.4.7",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.7",
"sinon": "10.0.0",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"tsc-watch": "4.2.9",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-message": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"pretty-quick",
"tslint -p tsconfig.json"
],
"*.{js,json}": "pretty-quick"
}
}