{
  "name": "serviceworker-webpack-plugin",
  "version": "1.0.2",
  "description": "Simplifies creation of a service worker to serve your webpack bundles",
  "main": "lib/index.js",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "clean": "rimraf ./docs/dist ./lib",
    "lint": "eslint . --fix && echo \"eslint: no lint errors\"",
    "test": "(cd ./test/webpack3; yarn install) && npm run lint && npm run test:unit && npm run test:3 && npm run flow",
    "test:unit": "NODE_ENV=test mocha src/{,**/}*.spec.js",
    "test:watch": "NODE_ENV=test mocha src/{,**/}*.spec.js -w",
    "test:3": "NODE_ENV=test mocha test/webpack3/index.js",
    "prebuild": "npm run clean",
    "prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --no-semi --single-quote --trailing-comma es5 --print-width 100",
    "flow": "flow",
    "build": "babel src --out-dir lib",
    "version": "yarn build && pkgfiles",
    "docs:development": "babel-node ./node_modules/.bin/webpack-dev-server --mode=development --config=docs/webpack/developmentConfig.js --progress",
    "docs:production": "npm run clean && NODE_ENV=docs-browser-production babel-node ./node_modules/.bin/webpack --mode=production --config=docs/webpack/productionConfig.js --progress"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/oliviertassinari/serviceworker-webpack-plugin.git"
  },
  "keywords": [
    "serviceworker",
    "webpack",
    "plugin"
  ],
  "author": "https://github.com/oliviertassinari",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/oliviertassinari/serviceworker-webpack-plugin/issues"
  },
  "homepage": "https://github.com/oliviertassinari/serviceworker-webpack-plugin#readme",
  "dependencies": {
    "minimatch": "^3.0.4"
  },
  "peerDependencies": {
    "webpack": "^4"
  },
  "devDependencies": {
    "autoprefixer": "^8.1.0",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.2.2",
    "babel-loader": "^7.1.4",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-1": "^6.24.1",
    "chai": "^4.1.2",
    "css-loader": "^0.28.11",
    "eslint": "^4.19.0",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-babel": "^4.1.2",
    "eslint-plugin-flowtype": "^2.46.1",
    "eslint-plugin-import": "^2.9.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-mocha": "^4.12.1",
    "eslint-plugin-prettier": "^2.6.0",
    "eslint-plugin-react": "^7.7.0",
    "extract-text-webpack-plugin": "^3.0.2",
    "flow-bin": "^0.68.0",
    "force-case-sensitivity-webpack-plugin": "^0.2.1",
    "html-webpack-plugin": "^3.0.6",
    "loglevel": "^1.6.1",
    "mocha": "^5.0.4",
    "node-sass": "^4.7.2",
    "pkgfiles": "^2.3.2",
    "postcss-loader": "^2.1.1",
    "prettier": "^1.11.1",
    "prop-types": "^15.6.1",
    "react": "^16.2.0",
    "react-dom": "^16.2.0",
    "react-hot-loader": "^4.0.0",
    "rimraf": "^2.6.2",
    "sass-loader": "^6.0.7",
    "style-loader": "^0.20.3",
    "webpack": "^4.1.1",
    "webpack-cli": "^2.0.12",
    "webpack-dev-server": "^3.1.1"
  }
}
