auditjs
Version:
Audit dependencies to identify known vulnerabilities and maintenance problems
11 lines (10 loc) • 376 B
TypeScript
import { Muncher } from './Muncher';
import { Coordinates } from '../Types/Coordinates';
export declare class Bower implements Muncher {
readonly devDependencies: boolean;
constructor(devDependencies?: boolean);
getSbomFromCommand(): Promise<any>;
isValid(): boolean;
getDepList(): Promise<Coordinates[]>;
getInstalledDeps(): Promise<Coordinates[]>;
}