{
  "name": "eslint-plugin-typescript-compat",
  "version": "1.0.2",
  "description": "ESLint rule for browser compatibility of your TypeScript code",
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin"
  ],
  "author": "azu <azuciao@gmail.com>",
  "main": "./dist/src/index.js",
  "files": [
    "dist/src"
  ],
  "scripts": {
    "build": "tsc",
    "test": "mocha \"tests/**/*.ts\"",
    "prepare": "git config --local core.hooksPath .githooks",
    "prepublish": "npm run --if-present build",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
  },
  "dependencies": {
    "@mdn/browser-compat-data": "^5.2.43",
    "@typescript-eslint/experimental-utils": "^5.10.1",
    "browserslist": "^4.9.1",
    "semver": "^7.1.3"
  },
  "peerDependencies": {
    "typescript": "^3.9.7 || ^4.0.0 || ^5.0.0"
  },
  "devDependencies": {
    "@types/browserslist": "^4.8.0",
    "@types/chai": "^4.2.9",
    "@types/eslint": "^8.4.1",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.15.3",
    "@types/semver": "^7.3.2",
    "@typescript-eslint/parser": "^5.10.1",
    "chai": "^4.2.0",
    "eslint": "^8.7.0",
    "lint-staged": "^13.2.0",
    "mocha": "^10.2.0",
    "prettier": "^2.5.1",
    "ts-node": "^10.4.0",
    "typescript": "~5.0.2"
  },
  "license": "MIT",
  "prettier": {
    "singleQuote": false,
    "printWidth": 120,
    "tabWidth": 4,
    "trailingComma": "none"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write"
    ]
  }
}
