{
  "name": "webpack-hot-client",
  "version": "4.1.2",
  "description": "A client for enabling, and interacting with, webpack Hot Module Replacement",
  "license": "MIT",
  "repository": "shellscape/webpack-hot-client",
  "author": "Andrew Powell <andrew@shellscape.org>",
  "homepage": "https://github.com/shellscape/webpack-hot-client",
  "bugs": "https://github.com/shellscape/webpack-hot-client/issues",
  "bin": "",
  "main": "lib/index.js",
  "engines": {
    "node": ">= 6.9.0 < 7.0.0 || >= 8.9.0"
  },
  "scripts": {
    "build:client": "babel lib/client --out-dir client",
    "commitlint": "commitlint",
    "commitmsg": "commitlint -e $GIT_PARAMS",
    "lint": "eslint --cache lib test",
    "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
    "lint-staged": "lint-staged",
    "prepublishOnly": "npm run build:client",
    "release": "standard-version",
    "release:ci": "conventional-github-releaser -p angular",
    "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
    "security": "npm audit",
    "test": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run build:client && jest",
    "test:watch": "jest --watch",
    "test:coverage": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run build:client && jest --collectCoverageFrom='lib/*.js' --coverage",
    "ci:lint": "npm run lint && npm run security",
    "ci:test": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test -- --runInBand",
    "ci:coverage": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test:coverage -- --runInBand",
    "defaults": "defaults"
  },
  "files": [
    "client/",
    "lib/compiler.js",
    "lib/HotClientError.js",
    "lib/index.js",
    "lib/options.js",
    "lib/socket-server.js",
    "schemas/",
    "LICENSE",
    "README.md"
  ],
  "peerDependencies": {
    "webpack": "^4.0.0"
  },
  "dependencies": {
    "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
    "json-stringify-safe": "^5.0.1",
    "loglevelnext": "^1.0.2",
    "merge-options": "^1.0.1",
    "strip-ansi": "^4.0.0",
    "uuid": "^3.1.0",
    "webpack-log": "^1.1.1",
    "ws": "^4.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/polyfill": "^7.0.0-beta.49",
    "@babel/preset-env": "^7.4.5",
    "@babel/register": "^7.0.0-beta.49",
    "@commitlint/cli": "^8.0.0",
    "@commitlint/config-conventional": "^8.0.0",
    "ansi-regex": "^4.1.0",
    "babel-jest": "^24.8.0",
    "codecov": "^3.5.0",
    "cross-env": "^5.1.6",
    "del-cli": "^2.0.0",
    "eslint": "^6.0.1",
    "eslint-config-shellscape": "^2.0.2",
    "eslint-plugin-import": "^2.8.0",
    "eslint-plugin-prettier": "^3.1.0",
    "expect": "^24.8.0",
    "husky": "^2.7.0",
    "jest": "^24.8.0",
    "jest-serializer-path": "^0.1.15",
    "killable": "^1.0.0",
    "lint-staged": "^8.2.1",
    "loud-rejection": "^2.1.0",
    "memory-fs": "^0.4.1",
    "mocha": "^6.1.4",
    "nyc": "^14.1.1",
    "pre-commit": "^1.2.2",
    "prettier": "^1.13.2",
    "sinon": "^7.3.2",
    "standard-version": "^6.0.1",
    "time-fix-plugin": "^2.0.0",
    "touch": "^3.1.0",
    "webpack": "^4.35.2"
  },
  "keywords": [
    "webpack"
  ],
  "jest": {
    "snapshotSerializers": [
      "jest-serializer-path"
    ],
    "testEnvironment": "node"
  },
  "pre-commit": "lint-staged",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  }
}
