{
  "name": "htmlhint",
  "version": "0.13.0",
  "description": "The Static Code Analysis Tool for your HTML",
  "repository": {
    "type": "git",
    "url": "https://github.com/htmlhint/HTMLHint"
  },
  "bugs": {
    "url": "https://github.com/htmlhint/HTMLHint/issues"
  },
  "keywords": [
    "html",
    "hint",
    "analysis",
    "javascript"
  ],
  "homepage": "https://htmlhint.com",
  "license": "MIT",
  "bin": {
    "htmlhint": "./bin/htmlhint"
  },
  "main": "dist/htmlhint.js",
  "module": "src/core.js",
  "scripts": {
    "commit": "npx git-cz",
    "prettier": "prettier --write .",
    "test": "mocha --recursive \"./test/**/*.spec.js\"",
    "build": "npm run build:min && npm run build:unmin",
    "build:min": "rollup -c --environment NODE_ENV:production --file dist/htmlhint.min.js",
    "build:unmin": "rollup -c",
    "lint:fix": "eslint src/ test/ bin/ --ext .js --max-warnings 0",
    "lint": "eslint --fix src/ test/ bin/ --ext .js --max-warnings 0"
  },
  "husky": {
    "hooks": {
      "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.(js|md)": [
      "npm run prettier"
    ],
    ".js": [
      "npm run lint:fix",
      "npm run lint"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    },
    "cz-customizable": {
      "config": "commitizen.config.js"
    }
  },
  "dependencies": {
    "async": "3.2.0",
    "colors": "1.4.0",
    "commander": "5.1.0",
    "esm": "3.2.25",
    "glob": "7.1.6",
    "parse-glob": "3.0.4",
    "path-parse": "1.0.6",
    "request": "2.88.2",
    "strip-json-comments": "3.1.0",
    "xml": "1.0.1"
  },
  "devDependencies": {
    "@commitlint/cli": "8.3.5",
    "@commitlint/config-conventional": "8.3.4",
    "@rollup/plugin-commonjs": "11.1.0",
    "@rollup/plugin-node-resolve": "7.1.3",
    "@semantic-release/changelog": "5.0.1",
    "@semantic-release/commit-analyzer": "8.0.1",
    "@semantic-release/git": "9.0.0",
    "@semantic-release/github": "7.0.5",
    "@semantic-release/npm": "7.0.5",
    "@semantic-release/release-notes-generator": "9.0.1",
    "commitizen": "4.1.2",
    "commitlint": "8.3.5",
    "eslint": "7.0.0",
    "eslint-config-prettier": "6.11.0",
    "eslint-plugin-prettier": "3.1.3",
    "expect.js": "0.3.1",
    "husky": "4.2.5",
    "istanbul": "0.4.5",
    "lint-staged": "10.2.2",
    "mocha": "7.1.2",
    "prettier": "2.0.5",
    "pretty-quick": "2.0.1",
    "rollup": "2.10.0",
    "rollup-plugin-babel": "4.4.0",
    "rollup-plugin-terser": "5.3.0",
    "semantic-release": "17.0.7"
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/github",
      "@semantic-release/git"
    ]
  },
  "files": [
    "bin",
    "dist"
  ]
}
