{ "name": "karma-webpack", "version": "5.0.0", "description": "Use webpack with karma", "license": "MIT", "repository": "webpack-contrib/karma-webpack", "author": "Tobias Koppers @sokra", "homepage": "https://github.com/webpack-contrib/karma-webpack", "bugs": "https://github.com/webpack-contrib/karma-webpack/issues", "main": "lib", "engines": { "node": ">= 6" }, "scripts": { "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", "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": "nsp check", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", "ci:lint": "npm run lint && npm run security", "ci:test": "npm run test -- --runInBand", "ci:coverage": "npm run test:coverage -- --runInBand", "defaults": "webpack-defaults" }, "files": [ "lib" ], "peerDependencies": { "webpack": "^5.0.0" }, "dependencies": { "glob": "^7.1.3", "minimatch": "^3.0.4", "webpack-merge": "^4.1.5" }, "devDependencies": { "@commitlint/cli": "^7.1.1", "@commitlint/config-conventional": "^7.1.1", "@webpack-contrib/defaults": "^2.5.0", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-cli": "^6.26.0", "babel-jest": "^23.4.2", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "conventional-github-releaser": "^3.1.2", "cross-env": "^5.2.0", "del": "^3.0.0", "del-cli": "^1.1.0", "eslint": "^5.4.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-prettier": "^2.6.2", "husky": "^0.14.3", "istanbul": "^0.4.5", "jest": "^23.5.0", "karma": "^6.0.3", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.2.0", "karma-mocha": "^1.3.0", "karma-spec-reporter": "^0.0.32", "lint-staged": "^7.2.2", "memory-fs": "^0.4.1", "mocha": "^5.2.0", "nsp": "^3.2.1", "pre-commit": "^1.2.2", "prettier": "^1.14.2", "puppeteer": "^5.5.0", "standard-version": "^4.4.0", "webpack": "^5.10.0" }, "keywords": [ "webpack" ], "jest": { "testEnvironment": "node" }, "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }