Gathering detailed insights and metrics for @types/uglifyjs-webpack-plugin
Gathering detailed insights and metrics for @types/uglifyjs-webpack-plugin
Gathering detailed insights and metrics for @types/uglifyjs-webpack-plugin
Gathering detailed insights and metrics for @types/uglifyjs-webpack-plugin
The repository for high quality TypeScript type definitions.
npm install @types/uglifyjs-webpack-plugin
Typescript
Module System
83.8
Supply Chain
83.7
Quality
75.3
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.16%)
Shell (0.01%)
Total Downloads
11,120,328
Last Day
492
Last Week
10,211
Last Month
41,924
Last Year
618,115
NOASSERTION License
49,709 Stars
89,364 Commits
30,382 Forks
640 Watchers
6 Branches
9,955 Contributors
Updated on May 11, 2025
Latest Version
1.1.5
Package Id
@types/uglifyjs-webpack-plugin@1.1.5
Unpacked Size
5.95 kB
Size
1.95 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
11.1%
492
Compared to previous day
Last Week
16.9%
10,211
Compared to previous week
Last Month
-12.5%
41,924
Compared to previous month
Last Year
-35.6%
618,115
Compared to previous year
1
npm install --save @types/uglifyjs-webpack-plugin
This package contains type definitions for uglifyjs-webpack-plugin (https://github.com/webpack-contrib/uglifyjs-webpack-plugin).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uglifyjs-webpack-plugin.
1import { Plugin } from "webpack"; 2 3export = UglifyJsPlugin; 4 5declare class UglifyJsPlugin extends Plugin { 6 constructor(options?: UglifyJsPlugin.UglifyJsPluginOptions); 7} 8 9declare namespace UglifyJsPlugin { 10 interface UglifyJsPluginOptions { 11 test?: RegExp | RegExp[] | undefined; 12 include?: RegExp | RegExp[] | undefined; 13 exclude?: RegExp | RegExp[] | undefined; 14 cache?: boolean | string | undefined; 15 parallel?: boolean | number | undefined; 16 sourceMap?: boolean | undefined; 17 uglifyOptions?: UglifyJsOptions | undefined; 18 extractComments?: 19 | boolean 20 | RegExp 21 | ((node: object, comment: string) => boolean) 22 | ExtractCommentsOptions 23 | undefined; 24 warningsFilter?: ((source: string) => boolean) | undefined; 25 } 26 27 interface UglifyJsOptions { 28 ie8?: boolean | undefined; 29 ecma?: number | undefined; 30 parse?: object | undefined; 31 mangle?: boolean | object | undefined; 32 output?: object | undefined; 33 compress?: boolean | object | undefined; 34 warnings?: boolean | undefined; 35 toplevel?: boolean | undefined; 36 nameCache?: object | undefined; 37 keep_classnames?: boolean | undefined; 38 keep_fnames?: boolean | undefined; 39 safari10?: boolean | undefined; 40 } 41 42 interface ExtractCommentsOptions { 43 condition?: RegExp | ((node: object, comment: string) => boolean) | undefined; 44 filename?: string | ((originalFileName: string) => string) | undefined; 45 banner?: boolean | string | ((fileName: string) => string) | undefined; 46 } 47} 48
These definitions were written by Rene Vajkay.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More