{
    "name": "openapi3-ts",
    "version": "3.1.2",
    "description": "TS Model & utils for OpenAPI 3.x specification.",
    "main": "dist/cjs/index.js",
    "module": "dist/mjs/index.js",
    "typings": "dist/mjs/index.d.ts",
    "repository": {
        "type": "git",
        "url": "https://github.com/metadevpro/openapi3-ts.git"
    },
    "scripts": {
        "clean": "rimraf dist",
        "build": "rimraf dist && npm run lint && tsc && tsc -p tsconfig-cjs.json",
        "build:w": "BUILD_WATCH=true node build.mjs",
        "lint": "eslint src/**/*.ts",
        "lint:fix": "eslint src/**/*.ts --fix",
        "prepare": "npm run build",
        "test:tdd": "vitest -w",
        "test": "vitest",
        "test:ci": "npm run test",
        "cover:ci": "npm run cover",
        "cover": "vitest --coverage"
    },
    "keywords": [
        "openapi3",
        "ts",
        "typescript"
    ],
    "author": "Pedro J. Molina / Metadev",
    "license": "MIT",
    "dependencies": {
        "yaml": "^2.1.3"
    },
    "devDependencies": {
        "@types/node": "^18.11.9",
        "@typescript-eslint/eslint-plugin": "^5.43.0",
        "@typescript-eslint/parser": "^5.43.0",
        "@vitest/coverage-c8": "^0.25.2",
        "c8": "^7.12.0",
        "coveralls": "^3.1.1",
        "eslint": "^8.28.0",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-prettier": "^4.2.1",
        "prettier": "^2.7.1",
        "rimraf": "^3.0.2",
        "typescript": "~4.9.3",
        "vitest": "^0.25.2",
        "vitest-teamcity-reporter": "^0.1.10"
    }
}
