-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.15 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
{
"name": "webpack-remove-empty-scripts",
"version": "1.0.4",
"description": "Webpack plugin removes empty JavaScript files generated when using styles.",
"keywords": [
"webpack",
"plugin",
"remove",
"empty",
"script",
"entry",
"style",
"scss",
"sass",
"css",
"js",
"javascript",
"mini-css-extract-plugin"
],
"license": "ISC",
"author": "webdiscus (https://github.com/webdiscus)",
"maintainers": [
"webdiscus (https://github.com/webdiscus)"
],
"funding": {
"type": "patreon",
"url": "https://patreon.com/biodiscus"
},
"homepage": "https://github.com/webdiscus/webpack-remove-empty-scripts#readme",
"bugs": {
"url": "https://github.com/webdiscus/webpack-remove-empty-scripts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdiscus/webpack-remove-empty-scripts.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "src/index.js",
"scripts": {
"install:yarn": "yarn install --ignore-engines",
"test": "jest --detectOpenHandles --config ./test/jest.config.js",
"test:coverage": "jest --detectOpenHandles --collectCoverage --config ./test/jest.config.js",
"publish:public": "npm publish --access public",
"publish:beta": "npm publish --tag beta"
},
"files": [
"src",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=12.14"
},
"peerDependencies": {
"webpack": ">=5.32.0"
},
"dependencies": {
"ansis": "1.5.2"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@test-fixtures/lorem": "0.0.2",
"@types/jest": "^29.5.11",
"@wordpress/scripts": "^27.0.0",
"@wordpress/dependency-extraction-webpack-plugin": "^5.0.0",
"css-loader": "^6.9.0",
"html-bundler-webpack-plugin": "^3.4.10",
"html-loader": "^5.0.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.7",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.89.0",
"webpack-hot-middleware": "^2.26.0",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.10.0"
}
}