forked from AnujRNair/webpack-extraneous-file-cleanup-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1022 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1022 Bytes
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
{
"name": "clean-entry-webpack-plugin",
"version": "0.0.1",
"description": "A webpack plugin to remove unwanted javascript files which is useful for css only webpack builds",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepak/clean-entry-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"clean",
"cleanup",
"entry",
"css",
"css-build",
"css-only-build"
],
"author": "Deepak Kannan <kannan.deepak@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepak/clean-entry-webpack-plugin/issues"
},
"homepage": "https://github.com/deepak/clean-entry-webpack-plugin#readme",
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/travis-cli": "^6.1.3"
},
"peerDependencies": {
"webpack": "^4.6.0"
},
"engines": {
"node": ">=8.x"
}
}