-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "grunt-webpack",
"description": "Use webpack with grunt.",
"version": "3.1.3",
"homepage": "https://github.com/webpack-contrib/grunt-webpack",
"author": {
"name": "Tobias Koppers @sokra"
},
"repository": "webpack-contrib/grunt-webpack",
"bugs": {
"url": "https://github.com/webpack-contrib/grunt-webpack/issues"
},
"publishConfig": {
"provenance": true
},
"packageManager": "[email protected]",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"engines": {
"node": ">=18.19.0"
},
"files": [
"src",
"tasks"
],
"peerDependencies": {
"webpack": "^5.0.0"
},
"license": "MIT",
"keywords": [
"gruntplugin",
"webpack",
"grunt"
],
"scripts": {
"lint": "eslint ./src ./tasks --report-unused-disable-directives",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"grunt": "^1.6.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"webpack": "^5.94.0",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"deep-for-each": "^3.0.0",
"webpack-merge": "^6.0.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"tasks/**/*.js"
]
}
}