{
    "name": "eslint-plugin-json-es",
    "version": "1.5.7",
    "description": "A JSON parser for ESLint.",
    "main": "index.js",
    "scripts": {
        "lint": "eslint lib",
        "coverage": "c8 --check-coverage --lines 100 npm test",
        "test": "vitest run",
        "testui": "vitest --ui",
        "prepublishOnly": "npm test",
        "patch": "npm version patch && auto-changelog",
        "changelog": "auto-changelog"
    },
    "files": [
        "README.md",
        "lib",
        "index.js",
        "LICENSE",
        "config",
        "rules"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/zeitport/eslint-plugin-json-es.git"
    },
    "keywords": [
        "eslint",
        "eslint-parser",
        "eslint-plugin",
        "JSON",
        "parser"
    ],
    "author": "Christian Schuller <cschuller@servusalps.com>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/zeitport/eslint-plugin-json-es/issues"
    },
    "homepage": "https://github.com/zeitport/eslint-plugin-json-es#readme",
    "dependencies": {
        "eslint-visitor-keys": "^3.3.0",
        "espree": "^9.3.1"
    },
    "peerDependencies": {
        "eslint": ">= 7"
    },
    "devDependencies": {
        "@vitest/ui": "^0.6.0",
        "auto-changelog": "^2.4.0",
        "c8": "^7.11.0",
        "eslint": "^8.10.0",
        "vitest": "^0.6.0"
    },
    "contributingGuide": {
        "commitTags": {
            "Fix": "for a bug fix",
            "Update": "either for a backwards-compatible enhancement or for a rule change that adds reported problems.",
            "New": "implemented a new feature.",
            "Breaking": "for a backwards-incompatible enhancement or feature.",
            "Docs": "changes to documentation only.",
            "Build": "changes to build process only.",
            "Upgrade": "for a dependency upgrade.",
            "Chore": "for refactoring, adding tests, etc. (anything that isn't user-facing)."
        }
    }
}
