{
    "name": "eslint-plugin-yml",
    "version": "0.13.0",
    "description": "This ESLint plugin provides linting rules for YAML.",
    "main": "lib/index.js",
    "files": [
        "lib"
    ],
    "engines": {
        "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
    },
    "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,.yml,.yaml",
        "eslint-fix": "eslint . --ext .js,.vue,.ts,.json,.md,.yml,.yaml --fix",
        "pretest:base": "cross-env DEBUG=eslint-plugin-yml*",
        "test:base": "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": "mocha --require ts-node/register/transpile-only \"tests/src/**/*.ts\" --reporter dot",
        "update": "node --require ts-node/register ./tools/update.ts && npm run eslint-fix && npm run cover",
        "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-fixtures": "ts-node ./tools/update-fixtures.ts && npm run eslint-fix"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/ota-meshi/eslint-plugin-yml.git"
    },
    "keywords": [
        "eslint",
        "eslintplugin",
        "eslint-plugin",
        "yaml",
        "yml"
    ],
    "author": "Yosuke Ota",
    "funding": "https://github.com/sponsors/ota-meshi",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/ota-meshi/eslint-plugin-yml/issues"
    },
    "homepage": "https://ota-meshi.github.io/eslint-plugin-yml/",
    "dependencies": {
        "debug": "^4.3.2",
        "lodash": "^4.17.21",
        "natural-compare": "^1.4.0",
        "yaml-eslint-parser": "^0.5.0"
    },
    "peerDependencies": {
        "eslint": ">=6.0.0"
    },
    "devDependencies": {
        "@ota-meshi/eslint-plugin": "^0.10.0",
        "@types/debug": "^4.1.5",
        "@types/eslint": "^8.0.0",
        "@types/eslint-scope": "^3.7.0",
        "@types/eslint-visitor-keys": "^1.0.0",
        "@types/estree": "^0.0.50",
        "@types/lodash": "^4.14.158",
        "@types/mocha": "^9.0.0",
        "@types/natural-compare": "^1.4.0",
        "@types/node": "^16.11.3",
        "@types/semver": "^7.3.1",
        "@typescript-eslint/eslint-plugin": "^5.0.0",
        "@typescript-eslint/parser": "^5.0.0",
        "cross-env": "^7.0.2",
        "env-cmd": "^10.1.0",
        "eslint": "^8.0.0",
        "eslint-config-prettier": "^8.0.0",
        "eslint-plugin-eslint-comments": "^3.2.0",
        "eslint-plugin-eslint-plugin": "^4.0.0",
        "eslint-plugin-json-schema-validator": "^2.0.0",
        "eslint-plugin-jsonc": "^2.0.0",
        "eslint-plugin-markdown": "^2.0.0-0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-node-dependencies": "^0.6.0",
        "eslint-plugin-prettier": "^4.0.0",
        "eslint-plugin-regexp": "^1.0.0",
        "eslint-plugin-vue": "^8.0.0",
        "eslint-plugin-yml": "^0.12.0",
        "eslint4b": "^7.3.1",
        "espree": "^9.0.0",
        "mocha": "^9.0.0",
        "monaco-editor": "^0.31.0",
        "nyc": "^15.1.0",
        "prettier": "^2.2.1",
        "raw-loader": "^4.0.1",
        "semver": "^7.3.2",
        "stylelint": "^14.0.0",
        "stylelint-config-recommended-vue": "^1.0.0",
        "stylelint-config-standard": "^24.0.0",
        "stylelint-plugin-stylus": "^0.13.0",
        "ts-node": "^10.0.0",
        "typescript": "~4.5.0",
        "vue-eslint-editor": "^1.1.0",
        "vue-eslint-parser": "^8.0.0",
        "vuepress": "^1.5.2"
    }
}
