UNPKG

karma-webpack

Version:
90 lines (89 loc) 2.56 kB
{ "name": "karma-webpack", "version": "5.0.1", "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": ">= 18" }, "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='lib/**/*.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": "^9.0.3", "webpack-merge": "^4.1.5" }, "devDependencies": { "@babel/cli": "^7.23.0", "@babel/core": "^7.23.2", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.23.2", "@commitlint/cli": "^18.0.0", "@commitlint/config-conventional": "^7.1.1", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-jest": "^29.7.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "cross-env": "^5.2.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", "jasmine": "^5.1.0", "jest": "^29.7.0", "karma": "^6.0.3", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.2.0", "karma-mocha": "^2.0.1", "karma-spec-reporter": "^0.0.32", "lint-staged": "^7.2.2", "memory-fs": "^0.4.1", "mocha": "^10.2.0", "pre-commit": "^1.2.2", "prettier": "^1.14.2", "puppeteer": "^21.4.0", "standard-version": "^9.5.0", "webpack": "^5.89.0" }, "keywords": [ "webpack" ], "jest": { "testEnvironment": "node" }, "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }