{
  "name": "add-asset-html-webpack-plugin",
  "version": "6.0.0",
  "description": "Add a JS or CSS assets to a generated HTML file",
  "files": [
    "src/",
    "index.d.ts"
  ],
  "main": "src/index.js",
  "scripts": {
    "clean": "del-cli lib/ coverage/ \"example/*/build\" \"example/*/dist\"",
    "cover": "yarn run test --coverage",
    "example": "yarn run clean && yarn run example:dll && yarn run example:polyfill",
    "example:dll": "webpack --config example/dll/webpack.config.dll.js && webpack --config example/dll/webpack.config.js",
    "example:polyfill": "webpack --config example/polyfill/webpack.config.js",
    "lint": "eslint --cache .",
    "update-license": "licensor --width 72",
    "build-and-update-license": "yarn run update-license",
    "test": "jest",
    "_postinstall": "husky install",
    "prepack": "pinst --disable",
    "postpack": "pinst --enable"
  },
  "repository": "SimenB/add-asset-html-webpack-plugin",
  "keywords": [
    "dll",
    "html-webpack-plugin",
    "webpack"
  ],
  "author": "Simen Bekkhus <sbekkhus91@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SimenB/add-asset-html-webpack-plugin/issues"
  },
  "homepage": "https://github.com/SimenB/add-asset-html-webpack-plugin#readme",
  "dependencies": {
    "globby": "^11.1.0",
    "micromatch": "^4.0.4"
  },
  "devDependencies": {
    "classnames": "^2.2.5",
    "del-cli": "^4.0.1",
    "eslint": "^8.10.0",
    "eslint-config-simenb-base": "^15.0.1",
    "express": "^4.17.1",
    "html-webpack-plugin": "^5.2.0",
    "husky": "^7.0.0",
    "jest": "^28.0.0",
    "jest-watch-typeahead": "^1.0.0",
    "licensor": "^4.0.0",
    "lint-staged": "^12.3.5",
    "pinst": "^3.0.0",
    "prettier": "^2.2.1",
    "puppeteer": "^17.0.0",
    "semantic-release": "^20.0.0",
    "slash": "^3.0.0",
    "stoppable": "^1.1.0",
    "webpack": "^5.23.0",
    "webpack-cli": "^5.1.1"
  },
  "peerDependencies": {
    "html-webpack-plugin": "^4.0.0 || ^5.0.0",
    "webpack": "^5.0.0"
  },
  "engines": {
    "node": "^16.13.0 || ^18.12.0 || >=20.0.0"
  },
  "jest": {
    "testEnvironment": "node",
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "transform": {},
    "watchPlugins": [
      "jest-watch-typeahead/filename",
      "jest-watch-typeahead/testname"
    ]
  },
  "lint-staged": {
    "*.{js,ts}": "eslint --fix --cache",
    "*.{md,json}": "prettier --write",
    ".eslintrc": "prettier --write"
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid",
    "trailingComma": "all",
    "proseWrap": "always",
    "overrides": [
      {
        "files": ".eslintrc",
        "options": {
          "parser": "json"
        }
      },
      {
        "files": "lib/**/*.js",
        "options": {
          "trailingComma": "es5"
        }
      },
      {
        "files": ".github/workflows/**/*.yml",
        "options": {
          "printWidth": 175
        }
      }
    ]
  },
  "release": {
    "branches": [
      "main",
      "4.x"
    ]
  },
  "packageManager": "yarn@3.5.1"
}
