{
  "name": "typescript-strict-plugin",
  "version": "2.4.4",
  "description": "Typescript tools that help with migration to the strict mode",
  "author": "Allegro",
  "contributors": [
    "Jaroslaw Glegola <jaroslaw.glegola@allegro.pl>",
    "Kamil Krysiak <kamil.krysiak@allegro.pl>"
  ],
  "keywords": [
    "TypeScript Strict",
    "TypeScript plugin",
    "TypeScript Language Service"
  ],
  "bugs": {
    "url": "https://github.com/allegro/typescript-strict-plugin/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/allegro/typescript-strict-plugin.git"
  },
  "license": "MIT",
  "bin": {
    "tsc-strict": "dist/cli/tsc-strict/index.js",
    "update-strict-comments": "dist/cli/update-strict-comments/index.js"
  },
  "main": "dist/plugin/index.js",
  "private": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "jest",
    "lint": "./node_modules/.bin/eslint './src/**/*.ts' --env jest --quiet",
    "prettier": "prettier --loglevel error --write .",
    "prettier:ci": "prettier --check .",
    "build": "tsc",
    "dev": "tsc --watch -p ."
  },
  "jest": {
    "preset": "ts-jest",
    "testTimeout": 20000,
    "roots": [
      "src",
      "e2e"
    ]
  },
  "dependencies": {
    "chalk": "^3.0.0",
    "execa": "^4.0.0",
    "minimatch": "^9.0.3",
    "ora": "^5.4.1",
    "yargs": "^16.2.0"
  },
  "devDependencies": {
    "@babel/core": "7.9.0",
    "@babel/preset-env": "7.9.0",
    "@babel/preset-typescript": "7.9.0",
    "@types/jest": "27.4.0",
    "@types/node": "^14.14.35",
    "@types/ora": "^3.2.0",
    "@typescript-eslint/eslint-plugin": "6.7.3",
    "@typescript-eslint/parser": "6.7.3",
    "eslint": "8.50.0",
    "eslint-config-prettier": "9.0.0",
    "eslint-plugin-prettier": "5.0.0",
    "glob": "^7.1.6",
    "husky": "4.2.3",
    "jest": "^29.7.0",
    "lint-staged": "^10.5.4",
    "prettier": "3.0.3",
    "pretty-quick": "3.1.0",
    "tmp-promise": "2.0.2",
    "ts-jest": "^29.1.2",
    "ts-node": "10.4.0",
    "typescript": "^5.4.5",
    "typescript-strict-plugin": "file:./",
    "which-module": "^2.0.0"
  },
  "lint-staged": {
    "*.(js|ts)": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "homepage": "https://github.com/allegro/typescript-strict-plugin#readme"
}
