{
  "name": "nestjs-multer-extended-fork",
  "version": "1.4.3",
  "description": "Extended MulterModule for NestJS",
  "author": "Minsung Kim <jeffminsungkim@gmail.com>",
  "license": "MIT",
  "url": "https://github.com/jeffminsungkim/nestjs-multer-extended#readme",
  "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/jeffminsungkim/nestjs-multer-extended"
  },
  "keywords": [
    "nestjs",
    "nest",
    "multer",
    "multer-sharp",
    "sharp",
    "file upload",
    "file interceptor",
    "extend",
    "extended",
    "aws",
    "s3"
  ],
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "@nestjs/common": "^6.11.5 || ^7.0.0",
    "@nestjs/platform-express": "^6.11.5 || ^7.0.0"
  },
  "dependencies": {
    "aws-sdk": "^2.610.0",
    "mime-types": "^2.1.27",
    "sharp": "^0.26.0"
  },
  "devDependencies": {
    "@commitlint/cli": "11.0.0",
    "@commitlint/config-conventional": "11.0.0",
    "@nestjs/common": "7.5.5",
    "@nestjs/core": "7.5.5",
    "@nestjs/platform-express": "7.5.5",
    "@nestjs/testing": "7.5.5",
    "@types/express": "4.17.9",
    "@types/jest": "26.0.16",
    "@types/jest-when": "2.7.2",
    "@types/mime-types": "2.1.0",
    "@types/multer": "1.4.4",
    "@types/node": "13.13.5",
    "@types/sharp": "0.26.1",
    "@types/sinon": "9.0.9",
    "@types/supertest": "2.0.10",
    "commitizen": "4.2.2",
    "conventional-changelog-cli": "2.1.1",
    "coveralls": "3.1.0",
    "cz-conventional-changelog": "3.3.0",
    "husky": "4.3.0",
    "jest": "26.6.3",
    "jest-extended": "0.11.5",
    "jest-when": "3.0.1",
    "lint-staged": "10.5.2",
    "nestjs-config": "1.4.7",
    "prettier": "2.2.1",
    "pretty-quick": "3.1.0",
    "reflect-metadata": "0.1.13",
    "rxjs": "6.6.3",
    "sinon": "9.2.1",
    "supertest": "6.0.1",
    "ts-jest": "26.4.4",
    "ts-node": "9.1.0",
    "tsc-watch": "4.2.9",
    "tsconfig-paths": "3.9.0",
    "tslint": "6.1.3",
    "tslint-config-prettier": "1.18.0",
    "typescript": "4.0.5"
  },
  "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"
  }
}
