{
  "name": "yaml-eslint-parser",
  "version": "0.3.2",
  "description": "A YAML parser that produces output compatible with ESLint",
  "main": "lib/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "prebuild": "npm run -s clean",
    "build": "tsc --project ./tsconfig.build.json",
    "clean": "rimraf .nyc_output lib coverage",
    "lint": "eslint \"tests\" \"src\" --ext .js,.ts",
    "eslint-fix": "npm run lint -- --fix",
    "test": "mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
    "cover": "nyc --reporter=lcov npm run test",
    "debug": "mocha --require ts-node/register/transpile-only --inspect \"tests/src/**/*.ts\" --reporter dot",
    "preversion": "npm run lint && npm test",
    "update-fixtures": "ts-node ./tools/update-fixtures.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ota-meshi/yaml-eslint-parser.git"
  },
  "keywords": [
    "yaml",
    "eslint",
    "parser"
  ],
  "author": "Yosuke Ota",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ota-meshi/yaml-eslint-parser/issues"
  },
  "homepage": "https://github.com/ota-meshi/yaml-eslint-parser#readme",
  "dependencies": {
    "eslint-visitor-keys": "^1.3.0",
    "lodash": "^4.17.20",
    "yaml": "^1.10.0"
  },
  "devDependencies": {
    "@ota-meshi/eslint-plugin": "^0.0.6",
    "@types/eslint": "^7.2.0",
    "@types/eslint-visitor-keys": "^1.0.0",
    "@types/lodash": "^4.14.167",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.0.13",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "eslint": "^7.5.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jsonc": "^0.7.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.2.0",
    "eslint-plugin-vue": "^7.2.0",
    "mocha": "^7.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.0.5",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7",
    "vue-eslint-parser": "^7.2.0"
  }
}
