{
    "name": "@darkonig/wsdl-tsclient",
    "version": "1.4.2",
    "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/darkonig/wsdl-tsclient.git"
    },
    "keywords": [
        "soap",
        "soap-client",
        "wsdl",
        "wsdl-client",
        "typescript"
    ],
    "author": "Daniel Derevjanik <daniel.derevjanik@gmail.com>",
    "contributors": [
        "Caio Andrade"
    ],
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/darkonig/wsdl-tsclient/issues"
    },
    "homepage": "https://github.com/darkonig/wsdl-tsclient#readme",
    "devDependencies": {
        "prettier": "^2.6.2",
        "tap-spec": "^5.0.0",
        "tape": "^5.5.3",
        "ts-node": "^10.7.0",
        "typescript": "^4.6.3"
    },
    "dependencies": {
        "@types/node": "^17.0.24",
        "@types/supports-color": "^8.1.0",
        "@types/tape": "^4.13.2",
        "@types/yargs": "^16.0.1",
        "@typescript-eslint/eslint-plugin": "^5.19.0",
        "@typescript-eslint/parser": "^5.19.0",
        "camel-to-kebab": "^1.1.2",
        "camelcase": "^6.3.0",
        "chalk": "^4.1.1",
        "eslint": "^8.13.0",
        "eslint-plugin-prettier": "^4.0.0",
        "sanitize-filename": "^1.6.3",
        "soap": "^1.0.0",
        "supports-color": "^8.1.1",
        "ts-morph": "^14.0.0",
        "yargs": "^16.2.0"
    }
}
