{
    "name": "eslint-plugin-json-schema-validator",
    "version": "0.4.3",
    "description": "ESLint plugin that validates data using JSON Schema Validator.",
    "main": "lib/index.js",
    "files": [
        "lib",
        "schemastore"
    ],
    "scripts": {
        "prebuild": "npm run -s clean",
        "build": "npm run build:ts",
        "build:ts": "tsc --project ./tsconfig.build.json",
        "clean": "rimraf .nyc_output dist coverage",
        "lint": "eslint . --ext .js,.vue,.ts,.json,.md,.toml,.yaml,.yml",
        "eslint-fix": "eslint . --ext .js,.vue,.ts,.json,.md,.toml,.yaml,.yml --fix",
        "test:base": "env-cmd -e test mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
        "test": "npm run test:base",
        "cover": "nyc --reporter=lcov npm run test:base",
        "test:debug": "env-cmd -e test mocha --require ts-node/register/transpile-only \"tests/src/**/*.ts\" --reporter dot",
        "update": "node --require ts-node/register/transpile-only ./tools/update.ts && npm run eslint-fix",
        "new": "ts-node ./tools/new-rule.ts",
        "predocs:watch": "npm run build:ts",
        "docs:watch": "vuepress dev --debug docs",
        "docs:build": "npm run build:ts && vuepress build docs --no-cache",
        "preversion": "npm test && git add .",
        "version": "env-cmd -e version npm run update && git add .",
        "update:schemastore": "ts-node tools/update-schemastore",
        "update:schemastore-only": "ts-node tools/update-schemastore/only"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/ota-meshi/eslint-plugin-json-schema-validator.git"
    },
    "keywords": [
        "eslint",
        "eslintplugin",
        "eslint-plugin",
        "validator ",
        "validation",
        "jsonschema",
        "json-schema"
    ],
    "author": "Yosuke Ota",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/ota-meshi/eslint-plugin-json-schema-validator/issues"
    },
    "homepage": "https://ota-meshi.github.io/eslint-plugin-json-schema-validator/",
    "peerDependencies": {
        "eslint": ">=6.0.0"
    },
    "dependencies": {
        "@actions/core": "^1.2.6",
        "ajv": "^7.0.0",
        "debug": "^4.3.1",
        "eslint-utils": "^2.1.0",
        "jsonc-eslint-parser": "^1.0.0",
        "lodash": "^4.17.19",
        "minimatch": "^3.0.4",
        "toml-eslint-parser": "^0.2.1",
        "tunnel-agent": "^0.6.0",
        "yaml-eslint-parser": "^0.3.2"
    },
    "devDependencies": {
        "@ota-meshi/eslint-plugin": "^0.1.0",
        "@types/debug": "^4.1.5",
        "@types/eslint": "^7.2.0",
        "@types/eslint-scope": "^3.7.0",
        "@types/eslint-visitor-keys": "^1.0.0",
        "@types/estree": "^0.0.46",
        "@types/lodash": "^4.14.158",
        "@types/mocha": "^8.0.0",
        "@types/node": "^14.0.13",
        "@types/request": "^2.48.5",
        "@types/semver": "^7.3.1",
        "@typescript-eslint/eslint-plugin": "^4.4.1",
        "@typescript-eslint/parser": "^4.4.1",
        "env-cmd": "^10.1.0",
        "eslint": "^7.3.0",
        "eslint-config-prettier": "^8.0.0",
        "eslint-plugin-eslint-comments": "^3.2.0",
        "eslint-plugin-eslint-plugin": "^2.3.0",
        "eslint-plugin-json-schema-validator": "^0.4.0",
        "eslint-plugin-jsonc": "^1.0.0",
        "eslint-plugin-markdown": "^2.0.0-0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^3.1.4",
        "eslint-plugin-regexp": "^0.2.0",
        "eslint-plugin-toml": "^0.2.0",
        "eslint-plugin-vue": "^7.0.1",
        "eslint-plugin-yml": "^0.7.0",
        "eslint4b": "^7.3.1",
        "espree": "^7.1.0",
        "mocha": "^8.0.0",
        "monaco-editor": "^0.22.3",
        "nyc": "^15.1.0",
        "prettier": "^2.2.1",
        "raw-loader": "^4.0.1",
        "request": "^2.88.2",
        "semver": "^7.3.2",
        "stylelint": "^13.6.1",
        "stylelint-config-standard": "^20.0.0",
        "stylelint-plugin-stylus": "^0.10.0",
        "ts-node": "^9.0.0",
        "typescript": "^4.0.0",
        "vue-eslint-editor": "^1.1.0",
        "vue-eslint-parser": "^7.3.0",
        "vuepress": "^1.5.2"
    }
}
