{
  "name": "nestjs-soap",
  "version": "3.0.1",
  "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"
  },
  "dependencies": {
    "soap": "^1.0.0"
  },
  "devDependencies": {
    "@nestjs/common": "^9.0.0",
    "@nestjs/core": "^9.0.0",
    "@nestjs/platform-express": "^9.0.0",
    "@nestjs/testing": "^9.0.0",
    "@types/jest": "27.4.1",
    "@types/node": "^18.6.1",
    "@types/supertest": "2.0.12",
    "husky": "^7.0.1",
    "jest": "27.5.1",
    "lint-staged": "13.0.3",
    "prettier": "^2.3.2",
    "reflect-metadata": "0.1.13",
    "rxjs": "7.2.0",
    "supertest": "6.1.3",
    "ts-jest": "27.1.5",
    "ts-node": "10.9.1",
    "tsc-watch": "2.2.1",
    "tsconfig-paths": "4.0.0",
    "tslint": "5.16.0",
    "typescript": "4.7.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run precommit",
      "pre-push": "npm run test"
    }
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "prettier --write",
      "git add"
    ]
  }
}
