![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@types/npm-license-crawler
Advanced tools
TypeScript definitions for npm-license-crawler
npm install --save @types/npm-license-crawler
This package contains type definitions for npm-license-crawler (https://github.com/mwittig/npm-license-crawler).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/npm-license-crawler.
export interface License {
licenses: string;
licenseUrl: string;
parents: string;
repository: string;
}
export interface Licenses {
[repository: string]: License;
}
export interface CrawlerOptions {
/** export the data as comma-separated values to the given file. The path will be created if it does not exist. */
csv?: string | undefined;
/** show only third-party licenses, i.e., only list the dependencies defined in package.json. */
dependencies?: boolean | undefined;
/** show only development dependencies */
development?: boolean | undefined;
/** path to a directory to be excluded (and its subdirectories) from the search. */
exclude?: string | string[] | undefined;
/** export data as JSON to the given file. The path will be created if it does not exist. */
json?: string | undefined;
/** omit version numbers in result (e.g. "npm-license-crawler@0.1.5" becomes "npm-license-crawler") */
omitVersion?: boolean | undefined;
/** show only direct dependencies licenses, i.e., don't list dependencies of dependencies. */
onlyDirectDependencies?: boolean | undefined;
/** show only production dependencies */
production?: boolean | undefined;
/** output the relative file path for license files. */
relativeLicensePath?: boolean | undefined;
/** path to the directory the license search should start from. If omitted the current working directory is assumed. */
start: string | string[];
/** show only licenses that can't be determined or have been guessed. */
unknown?: boolean | undefined;
/** don't show colors in the console output */
noColor?: boolean | undefined;
}
export type Callback = (error: Error | null, licenses: Licenses) => void;
export function dumpLicenses(args: CrawlerOptions, callback: Callback): void;
These definitions were written by Florian Keller.
FAQs
TypeScript definitions for npm-license-crawler
The npm package @types/npm-license-crawler receives a total of 38 weekly downloads. As such, @types/npm-license-crawler popularity was classified as not popular.
We found that @types/npm-license-crawler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.