{
    "name": "jsonc-eslint-parser",
    "version": "1.4.1",
    "description": "JSON, JSONC and JSON5 parser for use with ESLint plugins",
    "main": "lib/index.js",
    "files": [
        "lib"
    ],
    "engines": {
        "node": ">=8.10.0"
    },
    "scripts": {
        "build": "npm run build:ts",
        "build:ts": "tsc --project ./tsconfig.build.json",
        "clean": "rimraf .nyc_output lib coverage",
        "lint": "eslint . --ext .js,.ts,.json",
        "eslint-fix": "eslint . --ext .js,.ts,.json --fix",
        "test:base": "mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
        "test": "npm run test:base",
        "test:nyc": "nyc --reporter=lcov npm run test:base",
        "test:debug": "mocha --require ts-node/register/transpile-only --inspect \"tests/src/**/*.ts\" --reporter dot",
        "update": "ts-node ./tools/update.ts && npm run eslint-fix && npm run test:nyc",
        "preversion": "npm test && npm run update && git add .",
        "version": "npm run eslint-fix && git add .",
        "update-fixtures": "ts-node ./tools/update-fixtures.ts",
        "benchmark": "ts-node --transpile-only benchmark/index.ts"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/ota-meshi/jsonc-eslint-parser.git"
    },
    "keywords": [
        "eslint",
        "json",
        "jsonc",
        "json5",
        "parser"
    ],
    "author": "Yosuke Ota",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/ota-meshi/jsonc-eslint-parser/issues"
    },
    "homepage": "https://github.com/ota-meshi/jsonc-eslint-parser#readme",
    "devDependencies": {
        "@ota-meshi/eslint-plugin": "^0.8.0",
        "@types/benchmark": "^2.1.0",
        "@types/eslint": "^7.2.0",
        "@types/eslint-visitor-keys": "^1.0.0",
        "@types/estree": "^0.0.50",
        "@types/mocha": "^9.0.0",
        "@types/natural-compare": "^1.4.0",
        "@types/node": "^14.0.13",
        "@types/semver": "^7.3.1",
        "@typescript-eslint/eslint-plugin": "^4.0.0-0",
        "@typescript-eslint/parser": "^4.0.0-0",
        "benchmark": "^2.1.4",
        "eslint": "^7.3.0",
        "eslint-config-prettier": "^8.0.0",
        "eslint-plugin-eslint-comments": "^3.2.0",
        "eslint-plugin-json-schema-validator": "^1.0.0",
        "eslint-plugin-jsonc": "^1.0.0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-node-dependencies": "^0.5.0",
        "eslint-plugin-prettier": "^4.0.0",
        "eslint-plugin-regexp": "^1.0.0",
        "eslint-plugin-vue": "^7.6.0",
        "mocha": "^9.0.0",
        "nyc": "^15.1.0",
        "prettier": "^2.0.5",
        "ts-node": "^10.0.0",
        "typescript": "^4.0.0",
        "vue-eslint-parser": "^7.2.0"
    },
    "dependencies": {
        "acorn": "^7.4.1",
        "eslint-utils": "^2.1.0",
        "eslint-visitor-keys": "^1.3.0",
        "espree": "^6.0.0",
        "semver": "^6.3.0"
    }
}
