-
Notifications
You must be signed in to change notification settings - Fork 222
/
package.json
89 lines (89 loc) · 2.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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"
]
}
}