{
  "name": "eslint-plugin-sonarjs-6",
  "version": "0.6.0",
  "description": "SonarJS rules for ESLint (especially version 6)",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": "git@github.com:SonarSource/eslint-plugin-sonarjs.git",
  "license": "LGPL-3.0",
  "keywords": [
    "sonarjs",
    "eslint",
    "eslintplugin"
  ],
  "bugs": {
    "url": "https://github.com/SonarSource/eslint-plugin-sonarjs/issues"
  },
  "homepage": "https://github.com/SonarSource/eslint-plugin-sonarjs",
  "engines": {
    "node": ">=6"
  },
  "scripts": {
    "build": "rimraf lib && tsc -d -p tsconfig-src.json",
    "test": "jest",
    "ruling": "ts-node ruling/index.ts",
    "typecheck": "tsc -p tsconfig.json",
    "lint": "eslint --ext js,ts src tests ruling/index.ts",
    "precommit": "lint-staged && yarn typecheck",
    "prepack": "yarn build"
  },
  "peerDependencies": {
    "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
  },
  "devDependencies": {
    "@types/eslint": "4.16.0",
    "@types/estree": "0.0.38",
    "@types/jest": "22.2.2",
    "@types/lodash": "4.14.106",
    "@types/minimist": "1.2.0",
    "@types/node": "9.6.1",
    "babel-eslint": "8.2.2",
    "eslint": "4.19.1",
    "eslint-config-prettier": "2.9.0",
    "eslint-plugin-import": "2.10.0",
    "eslint-plugin-notice": "0.6.7",
    "eslint-plugin-sonarjs": "0.1.0",
    "husky": "0.14.3",
    "jest": "22.4.3",
    "lint-staged": "7.3.0",
    "lodash": "4.17.5",
    "minimist": "1.2.0",
    "prettier": "1.11.1",
    "rimraf": "^2.6.2",
    "ts-jest": "22.4.2",
    "ts-node": "5.0.1",
    "typescript": "2.8.1",
    "typescript-eslint-parser": "14.0.0"
  },
  "prettier": {
    "printWidth": 120,
    "trailingComma": "all"
  },
  "jest": {
    "roots": [
      "tests",
      "src"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "globals": {
      "ts-jest": {
        "skipBabel": true
      }
    },
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ],
    "transform": {
      "^.+\\.ts$": "ts-jest"
    },
    "testMatch": [
      "<rootDir>/tests/**/*.test.ts"
    ]
  },
  "lint-staged": {
    "*.{ts,tsx,js}": [
      "eslint",
      "prettier --write",
      "git add"
    ],
    "*.json": [
      "prettier --write",
      "git add"
    ]
  }
}
