-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.5 KB
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
{
"name": "grunt-webpack",
"description": "Use webpack with grunt.",
"version": "7.0.1",
"homepage": "https://github.com/danez/grunt-webpack",
"author": {
"name": "Tobias Koppers (http://github.com/sokra)"
},
"contributors": [
"Daniel Tschinder (http://github.com/danez)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danez/grunt-webpack.git"
},
"bugs": {
"url": "https://github.com/danez/grunt-webpack/issues"
},
"license": "MIT",
"keywords": [
"gruntplugin",
"webpack",
"grunt"
],
"publishConfig": {
"provenance": true
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=18.19.0"
},
"files": [
"src",
"tasks"
],
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vitest/coverage-v8": "4.1.0",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-webpack": "4.9.3",
"eslint-plugin-prettier": "5.5.5",
"execa": "9.6.1",
"fast-glob": "3.3.3",
"fs-extra": "11.3.4",
"globals": "17.4.0",
"grunt": "1.6.1",
"prettier": "3.8.1",
"vite": "7.3.1",
"vitest": "4.1.0",
"webpack": "5.105.4",
"webpack-dev-server": "5.2.3"
},
"dependencies": {
"deep-for-each": "^3.0.0",
"webpack-merge": "^6.0.1"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"pnpm": {
"overrides": {
"grunt>minimatch": "10.2.4"
}
}
}