{
  "name": "loopback4-soft-delete",
  "version": "11.0.0",
  "author": "Sourcefuse",
  "description": "A loopback-next extension for soft delete feature.",
  "keywords": [
    "loopback-extension",
    "loopback"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./sequelize": {
      "types": "./dist/repositories/sequelize/index.d.ts",
      "default": "./dist/repositories/sequelize/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "sequelize": [
        "./dist/repositories/sequelize/index.d.ts"
      ]
    }
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "npm run clean && lb-tsc",
    "build:watch": "lb-tsc --watch",
    "clean": "lb-clean dist *.tsbuildinfo",
    "lint": "npm run prettier:check && npm run eslint",
    "lint:fix": "npm run eslint:fix && npm run prettier:fix",
    "prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
    "prettier:check": "npm run prettier:cli -- -l",
    "prettier:fix": "npm run prettier:cli -- --write",
    "eslint": "lb-eslint --report-unused-disable-directives .",
    "eslint:fix": "npm run eslint -- --fix",
    "pretest": "npm run clean && npm run build",
    "test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
    "coverage": "lb-nyc npm run test",
    "coverage:ci": "lb-nyc report --reporter=text-lcov | coveralls",
    "posttest": "npm run lint",
    "test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
    "prepublishOnly": "npm run test",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sourcefuse/loopback4-soft-delete"
  },
  "license": "MIT",
  "files": [
    "README.md",
    "index.js",
    "index.d.ts",
    "dist",
    "src",
    "!*/__tests__"
  ],
  "peerDependencies": {
    "@loopback/boot": "^8.0.4",
    "@loopback/context": "^8.0.3",
    "@loopback/repository": "^8.0.3",
    "@loopback/sequelize": "^0.8.0",
    "loopback-datasource-juggler": "^5.0.9"
  },
  "peerDependenciesMeta": {
    "@loopback/sequelize": {
      "optional": true
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@loopback/boot": "^8.0.4",
    "@loopback/build": "^12.0.3",
    "@loopback/context": "^8.0.3",
    "@loopback/repository": "^8.0.3",
    "@loopback/sequelize": "^0.8.0",
    "@loopback/testlab": "^8.0.3",
    "@loopback/tslint-config": "^2.1.0",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/commit-analyzer": "^9.0.2",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^9.0.1",
    "@semantic-release/release-notes-generator": "^10.0.3",
    "@types/lodash": "^4.14.191",
    "@types/node": "^16.18.119",
    "@typescript-eslint/eslint-plugin": "^7.16.0",
    "@typescript-eslint/parser": "^7.16.0",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.3.0",
    "cz-customizable": "^6.3.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-eslint-plugin": "^5.5.1",
    "eslint-plugin-mocha": "^10.4.3",
    "git-release-notes": "^5.0.0",
    "husky": "^7.0.4",
    "jsdom": "^21.0.0",
    "loopback-datasource-juggler": "^5.1.3",
    "minimist": ">=1.2.6",
    "semantic-release": "^19.0.3",
    "simple-git": "^3.15.1",
    "source-map-support": "^0.5.21",
    "sqlite3": "^5.1.4",
    "typescript": "~5.2.2"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "overrides": {
    "body-parser": {
      "debug": "^4.3.4"
    },
    "express": {
      "debug": "^4.3.4",
      "finalhandler": "^1.2.0",
      "send": "^0.18.0",
      "serve-static": "^1.15.0"
    },
    "git-release-notes": {
      "ejs": "^3.1.8",
      "yargs": "^17.6.2"
    },
    "@semantic-release/npm": {
      "npm": "^9.4.2"
    }
  },
  "dependencies": {
    "@loopback/core": "^7.0.3",
    "@loopback/rest": "^15.0.4",
    "lodash": "^4.17.21"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-customizable"
    }
  },
  "release": {
    "branches": [
      "master"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": [
            {
              "type": "chore",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "package.json",
            "CHANGELOG.md"
          ],
          "message": "chore(release): ${nextRelease.version} semantic"
        }
      ],
      "@semantic-release/github"
    ],
    "repositoryUrl": "git@github.com:sourcefuse/loopback4-soft-delete.git"
  }
}
