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
87.6
Supply Chain
83.7
Quality
75.3
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
10,997,258
Last Day
2,161
Last Week
11,158
Last Month
55,182
Last Year
665,017
NOASSERTION License
49,232 Stars
88,746 Commits
30,316 Forks
640 Watchers
6 Branches
9,958 Contributors
Updated on Feb 20, 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
15.9%
2,161
Compared to previous day
Last Week
6.9%
11,158
Compared to previous week
Last Month
89.3%
55,182
Compared to previous month
Last Year
-32.3%
665,017
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
30 commit(s) and 2 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
Found 25/30 approved changesets -- score normalized to 8
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-02-17
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