Gathering detailed insights and metrics for @types/gulp-size
Gathering detailed insights and metrics for @types/gulp-size
Gathering detailed insights and metrics for @types/gulp-size
Gathering detailed insights and metrics for @types/gulp-size
npm install @types/gulp-size
Typescript
Module System
70.1
Supply Chain
96.8
Quality
75.9
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Total Downloads
1,102,303
Last Day
120
Last Week
858
Last Month
4,104
Last Year
55,752
48,905 Stars
88,337 Commits
30,220 Forks
641 Watching
5 Branches
9,977 Contributors
Latest Version
4.0.3
Package Id
@types/gulp-size@4.0.3
Unpacked Size
5.90 kB
Size
2.00 kB
File Count
5
Publised On
07 Nov 2023
Cumulative downloads
Total Downloads
Last day
-23.1%
120
Compared to previous day
Last week
-9.3%
858
Compared to previous week
Last month
-11.6%
4,104
Compared to previous month
Last year
-35.7%
55,752
Compared to previous year
1
npm install --save @types/gulp-size
This package contains type definitions for gulp-size (https://github.com/sindresorhus/gulp-size).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-size.
1/// <reference types="node" /> 2 3declare namespace size { 4 interface Options { 5 /** 6 * Displays the size of every file instead of just the total size. 7 * 8 * @default false 9 */ 10 showFiles?: boolean | undefined; 11 12 /** 13 * Displays the gzipped size. 14 * 15 * @default false 16 */ 17 gzip?: boolean | undefined; 18 19 /** 20 * Give it a title so it's possible to distinguish the output of multiple instances logging at once. 21 * 22 * @default '' 23 */ 24 title?: string | undefined; 25 26 /** 27 * Displays prettified size: 1337 B → 1.34 kB. 28 * 29 * @default true 30 */ 31 pretty?: boolean | undefined; 32 33 /** 34 * Displays the total of all files. 35 * 36 * @default true 37 */ 38 showTotal?: boolean | undefined; 39 40 /** 41 * Displays the brotli compressed size. 42 * 43 * @default false 44 */ 45 brotli?: boolean | undefined; 46 47 /** 48 * Displays the uncompressed size. 49 * 50 * @default false 51 */ 52 uncompressed?: boolean | undefined; 53 } 54 55 interface SizeStream extends NodeJS.ReadWriteStream { 56 /** 57 * The total size of all files in bytes. 58 * 59 * @example 12423000 60 */ 61 size: number; 62 63 /** 64 * Prettified version of .size. 65 * 66 * @example 14 kB 67 */ 68 prettySize: string; 69 } 70} 71 72declare function size(options?: size.Options): size.SizeStream; 73 74export = size; 75
These definitions were written by Tanguy Krotoff, and Remisery.
No vulnerabilities found.
Reason
30 commit(s) and 5 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
Found 27/30 approved changesets -- score normalized to 9
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 2024-12-23
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