{
  "name": "nodemon-webpack-plugin",
  "version": "4.8.2",
  "description": "A webpack plugin that starts and reloads a server using Nodemon.",
  "main": "dist/index.js",
  "types": "typings.d.ts",
  "files": [
    "dist/",
    "typings.d.ts"
  ],
  "scripts": {
    "lint": "eslint .",
    "test": "npm run test:webpack4 && npm run test:webpack5",
    "test:webpack4": "yarn add webpack@^4.46.0 --dev && cucumber-js",
    "test:webpack5": "yarn add webpack@^5.73.0 --dev && cucumber-js",
    "test:only": "cucumber-js --tags @only",
    "build": "npm run lint && rimraf dist/ && babel src/ --out-dir dist/",
    "watch": "rimraf dist/ && babel src/ --watch --out-dir dist/",
    "prettier:fix": "prettier '{**/,}*.{js,jsx,ts,tsx,json,scss,css,md,html,yaml,yml}' --ignore-path=.gitignore --write",
    "semantic-release": "semantic-release"
  },
  "engines": {
    "node": ">=8.10.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Izhaki/nodemon-webpack-plugin.git"
  },
  "keywords": [
    "webpack",
    "nodemon",
    "plugin",
    "server",
    "start",
    "watch",
    "restart"
  ],
  "author": "Roey Izhaki",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Izhaki/nodemon-webpack-plugin.git/issues"
  },
  "homepage": "https://github.com/Izhaki/nodemon-webpack-plugin.git",
  "dependencies": {
    "@types/nodemon": "latest",
    "nodemon": "3.0.1"
  },
  "peerDependencies": {
    "webpack": "4 || 5"
  },
  "devDependencies": {
    "@babel/cli": "^7.17.10",
    "@babel/core": "^7.18.5",
    "@babel/preset-env": "^7.18",
    "@babel/register": "^7.17.7",
    "@commitlint/cli": "^15.0.0",
    "@commitlint/config-conventional": "^15.0.0",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/exec": "^6.0.2",
    "@semantic-release/git": "^10.0.1",
    "babel-loader": "8.2.2",
    "child-process-promise": "2.2.1",
    "cucumber": "5.1.0",
    "eslint": "8.18.0",
    "eslint-config-airbnb-base": "15",
    "eslint-config-prettier": "8",
    "eslint-plugin-import": "2.26.0",
    "express": "4.18.1",
    "fs-extra": "9.0.1",
    "husky": "^7.0.4",
    "lint-staged": "^10.5.3",
    "mustache": "4.2.0",
    "prettier": "^2.7.1",
    "rimraf": "3.0.2",
    "semantic-release": "^19.0.3",
    "tmp": "^0.2.1",
    "tree-kill": "^1.2.2",
    "typescript": "^4.7.4",
    "webpack": "^5.73.0",
    "webpack-cli": "^4.3.1",
    "webpack-node-externals": "2.5.2"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,json,scss,css,md,html,yaml,yml}": [
      "prettier --write",
      "git add"
    ]
  }
}
