{
    "name": "silly-ts-json-schema-generator",
    "version": "0.84.0",
    "description": "Generate JSON schema from your Typescript sources",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "bin": {
        "ts-json-schema-generator": "./bin/ts-json-schema-generator"
    },
    "files": [
        "dist",
        "src",
        "factory",
        "index.*",
        "ts-json-schema-generator.*"
    ],
    "author": {
        "name": "Alexander Evtushenko",
        "email": "aevtushenko@xiag.ch"
    },
    "contributors": [
        {
            "name": "Dominik Moritz",
            "email": "domoritz@gmail.com"
        },
        {
            "name": "MooYeol Prescott Lee",
            "email": "mooyoul@gmail.com"
        },
        {
            "name": "Ross Leitch",
            "email": "professional.balbatross@gmail.com"
        }
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/WorkerHive/ts-json-schema-generator.git"
    },
    "license": "MIT",
    "keywords": [
        "ts",
        "typescript",
        "json",
        "schema",
        "jsonschema"
    ],
    "engines": {
        "node": ">=10.0.0"
    },
    "dependencies": {
        "@types/json-schema": "^7.0.6",
        "commander": "^7.0.0",
        "fast-json-stable-stringify": "^2.1.0",
        "glob": "^7.1.6",
        "json-stable-stringify": "^1.0.1",
        "typescript": "~4.1.3"
    },
    "devDependencies": {
        "@babel/core": "^7.12.10",
        "@babel/preset-env": "^7.12.11",
        "@babel/preset-typescript": "^7.12.7",
        "@semantic-release/git": "^9.0.0",
        "@types/fast-json-stable-stringify": "^2.0.0",
        "@types/glob": "^7.1.3",
        "@types/jest": "^26.0.20",
        "@types/json-stable-stringify": "^1.0.32",
        "@types/node": "^14.14.21",
        "@typescript-eslint/eslint-plugin": "^4.13.0",
        "@typescript-eslint/parser": "^4.13.0",
        "ajv": "^7.0.3",
        "ajv-formats": "^1.5.1",
        "chai": "^4.2.0",
        "eslint": "^7.18.0",
        "eslint-config-prettier": "^7.1.0",
        "eslint-plugin-prettier": "^3.3.1",
        "jest": "^26.6.3",
        "jest-junit": "^12.0.0",
        "prettier": "^2.2.1",
        "semantic-release": "^17.3.3",
        "ts-node": "^9.1.1"
    },
    "scripts": {
        "prepublishOnly": "yarn build",
        "build": "tsc",
        "watch": "tsc -w",
        "lint": "eslint '{src,test,factory}/**/*.ts'",
        "format": "yarn lint --fix",
        "test": "jest test/ --verbose",
        "test:fast": "FAST_TEST=1 jest test/ --verbose",
        "debug": "node -r ts-node/register --inspect-brk ts-json-schema-generator.ts",
        "run": "ts-node ts-json-schema-generator.ts"
    },
    "release": {
        "plugins": [
            "@semantic-release/commit-analyzer",
            "@semantic-release/release-notes-generator",
            "@semantic-release/github",
            "@semantic-release/npm",
            [
                "@semantic-release/git",
                {
                    "assets": [
                        "package.json"
                    ],
                    "message": "chore(release): ${nextRelease.version}"
                }
            ]
        ]
    }
}
