Gathering detailed insights and metrics for codeowners-utils
Gathering detailed insights and metrics for codeowners-utils
Gathering detailed insights and metrics for codeowners-utils
Gathering detailed insights and metrics for codeowners-utils
npm install codeowners-utils
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
20 Stars
7 Commits
4 Forks
5 Watching
4 Branches
2 Contributors
Updated on 23 May 2024
TypeScript (100%)
Cumulative downloads
Total Downloads
Last day
-18.1%
10,584
Compared to previous day
Last week
-3.6%
62,237
Compared to previous week
Last month
-10.4%
311,138
Compared to previous month
Last year
59.2%
3,192,339
Compared to previous year
Utilities for working with CODEOWNERS files
1npm install --save codeowners-utils
From the generated dist/codeowners-utils.d.ts
file:
1/** 2 * An individual entry from a CODEOWNERS file 3 */ 4export interface CodeOwnersEntry { 5 pattern: string 6 owners: Array<string> 7} 8 9/** 10 * Parse a CODEOWNERS file into an array of entries (will be in reverse order 11 * of the file). 12 */ 13export declare function parse(str: string): Array<CodeOwnersEntry> 14 15/** 16 * Standard locations to search for the CODEOWNERS file in priority order 17 * (Note: This comes from GitHub). 18 */ 19export declare let CODEOWNERS_PATHS: string[] 20 21/** 22 * Find the path of the CODEOWNERS file from the current working directory. 23 */ 24export declare function findOwnersPath(cwd: string): Promise<string | null> 25 26/** 27 * Find, load, and parse the CODEOWNERS file (if it exists) from the current 28 * working directory. 29 */ 30export declare function loadOwners( 31 cwd: string, 32): Promise<Array<CodeOwnersEntry> | null> 33 34/** 35 * Match a filename against a glob pattern (while respecting .gitignore rules) 36 */ 37export declare function matchPattern(filename: string, pattern: string): boolean 38 39/** 40 * Match a filename against CODEOWNERS entries to determine which (if any) it 41 * matches. 42 */ 43export declare function matchFile( 44 filename: string, 45 entries: Array<CodeOwnersEntry>, 46): CodeOwnersEntry | null 47 48/** 49 * Given a set of files and CODEOWNERS entries, return the set of files which 50 * are not matched to any CODEOWNERS entries. 51 */ 52export declare function filterUnmatchedFiles( 53 files: Array<string>, 54 entries: Array<CodeOwnersEntry>, 55): string[] 56 57/** 58 * Find all of the files in a git repository which are not matched by any code 59 * owners using a set of CODEOWNERS entries. 60 */ 61export declare function findUnmatchedFilesFromEntries( 62 entries: Array<CodeOwnersEntry>, 63 cwd: string, 64): Promise<Array<string>> 65 66/** 67 * Find all of the files in a git repository which are not matched by any code 68 * owners. 69 */ 70export declare function findUnmatchedFiles( 71 cwd: string, 72): Promise<Array<string> | null>
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 1/7 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
22 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
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