-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 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
{
"name": "unminified-webpack-plugin",
"version": "3.0.0",
"description": "A `webpack` plugin for generating un-minified JavaScript files along with minimize.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"files": [
"index.js",
"legacy.js",
"support5.js"
],
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftstick/unminified-webpack-plugin.git"
},
"keywords": [
"unminified",
"webpack"
],
"author": "Howard.Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/leftstick/unminified-webpack-plugin/issues"
},
"homepage": "https://github.com/leftstick/unminified-webpack-plugin#readme",
"devDependencies": {
"del": "^6.0.0",
"mocha": "^8.3.2",
"webpack": "^5.36.2"
},
"peerDependencies": {
"webpack": "^5.36.2"
}
}