forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "@rushstack/module-minifier-plugin",
"version": "0.4.31",
"description": "This plugin splits minification of webpack compilations into smaller units.",
"main": "lib/index.js",
"typings": "dist/module-minifier-plugin.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/rushstack/tree/master/webpack/module-minifier-plugin"
},
"engines": {
"node": ">=10.17.1"
},
"scripts": {
"build": "heft test --clean"
},
"peerDependencies": {
"@types/webpack": "*",
"webpack": "^4.31.0",
"webpack-sources": "~1.4.3"
},
"peerDependenciesMeta": {
"@types/webpack": {
"optional": true
}
},
"dependencies": {
"@types/node": "12.20.24",
"@types/tapable": "1.0.6",
"source-map": "~0.7.3",
"tapable": "1.1.3",
"terser": "4.7.0"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@types/heft-jest": "1.0.1",
"@types/webpack": "4.41.24",
"@types/webpack-sources": "1.4.2",
"webpack": "~4.44.2",
"webpack-sources": "~1.4.3"
},
"sideEffects": [
"./lib/terser/Base54",
"./lib/OverrideWebpackIdentifierAllocation"
]
}