{
  "name": "wsdl-tsclient",
  "version": "1.7.1",
  "description": "Generate typescript soap client with typescript definitons from WSDL file.",
  "main": "dist/src/index.js",
  "bin": {
    "wsdl-tsclient": "dist/src/cli.js"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "scripts": {
    "pretest": "rm -rf ./test/generated",
    "test": "npm run test:node-soap && npm run test:node-soap2 && npm run test:public",
    "test:node-soap": "ts-node node_modules/tape/bin/tape ./test/node-soap/*.test.ts | tap-spec",
    "test:node-soap2": "ts-node node_modules/tape/bin/tape ./test/node-soap/**/*.test.ts | tap-spec",
    "test:public": "ts-node node_modules/tape/bin/tape ./test/resources-public/**/*.test.ts | tap-spec",
    "preversion": "npm test && npm run build",
    "prepublishOnly": "npm test && npm run dist",
    "dev": "ts-node -T ./dev.ts",
    "dist": "tsc",
    "build": "tsc",
    "lint": "eslint ./src",
    "lint:fix": "eslint --fix ./src"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dderevjanik/wsdl-tsclient.git"
  },
  "keywords": [
    "soap",
    "soap-client",
    "wsdl",
    "wsdl-client",
    "typescript"
  ],
  "author": "Daniel Derevjanik <daniel.derevjanik@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dderevjanik/wsdl-tsclient/issues"
  },
  "homepage": "https://github.com/dderevjanik/wsdl-tsclient#readme",
  "devDependencies": {
    "@types/node": "^20.14.11",
    "@types/supports-color": "^8.1.3",
    "@types/tape": "^5.6.4",
    "@types/yargs": "^17.0.32",
    "@typescript-eslint/eslint-plugin": "^5.19.0",
    "@typescript-eslint/parser": "^5.19.0",
    "eslint": "^8.13.0",
    "eslint-plugin-prettier": "^4.0.0",
    "prettier": "^2.6.2",
    "tap-spec": "^5.0.0",
    "tape": "^5.8.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.5.3"
  },
  "dependencies": {
    "camelcase": "^6.3.0",
    "chalk": "^4.1.1",
    "sanitize-filename": "^1.6.3",
    "soap": "^1.1.0",
    "supports-color": "^8.1.1",
    "ts-morph": "^23.0.0",
    "yargs": "^17.7.2"
  }
}
