{
  "name": "inline-chunk-manifest-html-webpack-plugin",
  "version": "2.0.0",
  "description": "Extension plugin for html-webpack-plugin to inline webpack chunk manifest. Default inlines in head tag.",
  "main": "./src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/jouni-kantola/inline-chunk-manifest-html-webpack-plugin.git"
  },
  "keywords": [
    "webpack",
    "manifest"
  ],
  "author": "Jouni Kantola <jouni@kantola.se> (https://github.com/jouni-kantola)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jouni-kantola/inline-chunk-manifest-html-webpack-plugin/issues"
  },
  "homepage": "https://github.com/jouni-kantola/inline-chunk-manifest-html-webpack-plugin#readme",
  "files": [
    "src"
  ],
  "devDependencies": {
    "ava": "^0.23.0",
    "eslint": "^4.9.0",
    "eslint-plugin-prettier": "^2.3.1",
    "husky": "^0.14.3",
    "lint-staged": "^4.3.0",
    "nyc": "^11.2.1",
    "prettier": "^1.7.4"
  },
  "dependencies": {
    "webpack-sources": "^1.0.1"
  },
  "peerDependencies": {
    "webpack": "^2.0.0 || ^3.0.0"
  },
  "scripts": {
    "lint": "node_modules/.bin/eslint ./src",
    "test": "ava test/*-test.js",
    "coverage": "node_modules/.bin/nyc --check-coverage npm test",
    "qa": "npm run lint & npm run coverage",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "git add"
    ]
  },
  "nyc": {
    "watermarks": {
      "lines": [
        80,
        95
      ],
      "functions": [
        80,
        95
      ],
      "branches": [
        80,
        95
      ],
      "statements": [
        80,
        95
      ]
    }
  }
}
