webpack-hot-client
Version:
A client for enabling, and interacting with, webpack Hot Module Replacement
110 lines (109 loc) • 3.41 kB
JSON
{
"name": "webpack-hot-client",
"version": "4.2.0",
"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",
"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 --audit-level=moderate",
"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": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"ansi-regex": "^5.0.0",
"babel-jest": "^26.5.2",
"codecov": "^3.5.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"eslint": "^7.10.0",
"eslint-config-shellscape": "^2.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.1.0",
"expect": "^26.5.2",
"husky": "^4.3.0",
"jest": "^26.5.2",
"jest-serializer-path": "^0.1.15",
"killable": "^1.0.0",
"lint-staged": "^10.4.0",
"loud-rejection": "^2.1.0",
"memory-fs": "^0.5.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"sinon": "^9.2.0",
"standard-version": "^9.0.0",
"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"
]
}
}