{
  "name": "nestjs-soap",
  "version": "3.0.5",
  "description": "Nestjs module wrapper for soap",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=12.0.0"
  },
  "files": [
    "dist/**/*",
    "*.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lehh/nestjs-soap.git"
  },
  "keywords": [
    "nestjs",
    "soap",
    "module"
  ],
  "author": "Alessandra Terra <aleterre10@outlook.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lehh/nestjs-soap/issues"
  },
  "homepage": "https://github.com/lehh/nestjs-soap#readme",
  "scripts": {
    "prebuild": "rm -rf dist",
    "prepare": "npm run build",
    "build": "tsc -p tsconfig.build.json",
    "start:dev": "tsc -w",
    "format:check": "prettier -c \"src/**/*.ts\" \"test/**/*.ts\"",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint:check": "tslint -p tsconfig.json -c tslint.json",
    "precommit": "npx --no-install lint-staged",
    "test": "jest --no-cache --coverage",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:e2e": "jest --config ./test/jest-e2e.json"
  },
  "peerDependencies": {
    "@nestjs/common": "^8.4.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
  },
  "dependencies": {
    "soap": "^1.9.3"
  },
  "devDependencies": {
    "@nestjs/common": "^11.0.0",
    "@nestjs/core": "^11.0.0",
    "@nestjs/platform-express": "^11.0.0",
    "@nestjs/testing": "^11.0.0",
    "@types/jest": "^29.0.0",
    "@types/node": "^22.0.0",
    "@types/supertest": "^6.0.0",
    "@typescript-eslint/eslint-plugin": "^8.26.1",
    "@typescript-eslint/parser": "^8.26.1",
    "eslint": "^9.22.0",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-prettier": "^5.2.3",
    "husky": "^9.0.0",
    "jest": "^29.0.0",
    "lint-staged": "^15.0.0",
    "prettier": "^3.0.0",
    "reflect-metadata": "0.2.2",
    "rxjs": "7.8.2",
    "supertest": "7.0.0",
    "ts-jest": "^29.0.0",
    "ts-node": "10.9.2",
    "tsc-watch": "6.2.1",
    "tsconfig-paths": "4.2.0",
    "typescript": "5.8.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run precommit",
      "pre-push": "npm run test"
    }
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "prettier --write",
      "git add"
    ]
  }
}
