{
  "name": "ts-to-json",
  "version": "1.8.3",
  "description": "Generate JSON schema from your Typescript sources",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "ts-to-json": "./bin/ts-to-json"
  },
  "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": "Mo doaie",
      "email": "mdoaie@yahoo.co.uk"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Cyrus-d/ts-to-json"
  },
  "license": "MIT",
  "keywords": [
    "ts",
    "typescript",
    "json",
    "schema",
    "jsonschema"
  ],
  "engines": {
    "node": ">=10.0.0"
  },
  "dependencies": {
    "@types/json-schema": "^7.0.12",
    "commander": "^10.0.1",
    "glob": "^8.0.3",
    "is-mergeable-object": "^1.1.1",
    "json5": "^2.2.3",
    "normalize-path": "^3.0.0",
    "safe-stable-stringify": "^2.4.3",
    "sortobject": "^4.16.0",
    "typescript": "~5.1.3"
  },
  "devDependencies": {
    "@auto-it/conventional-commits": "^10.46.0",
    "@auto-it/first-time-contributor": "^10.46.0",
    "@babel/core": "^7.22.1",
    "@babel/preset-env": "^7.22.4",
    "@babel/preset-typescript": "^7.21.5",
    "@types/animejs": "^3.1.7",
    "@types/glob": "^8.1.0",
    "@types/jest": "^29.5.2",
    "@types/node": "^20.2.5",
    "@types/normalize-path": "^3.0.0",
    "@typescript-eslint/eslint-plugin": "^5.59.8",
    "@typescript-eslint/parser": "^5.59.8",
    "ajv": "^8.12.0",
    "ajv-formats": "^2.1.1",
    "auto": "^10.46.0",
    "chai": "^4.3.7",
    "cross-env": "^7.0.3",
    "eslint": "^8.42.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.5.0",
    "jest-junit": "^16.0.0",
    "prettier": "^2.8.8",
    "ts-node": "^10.9.1",
    "vega": "^5.25.0",
    "vega-lite": "^5.9.3"
  },
  "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": "cross-env FAST_TEST=1 jest test/ --verbose",
    "test:coverage": "yarn jest test/ --collectCoverage=true",
    "test:update": "cross-env UPDATE_SCHEMA=true yarn test:fast",
    "debug": "node -r ts-node/register --inspect-brk ts-json-schema-generator.ts",
    "run": "ts-node-transpile-only ts-json-schema-generator.ts",
    "release": "yarn build && auto shipit"
  }
}
