UNPKG

auditjs

Version:

Audit dependencies to identify known vulnerabilities and maintenance problems

16 lines (15 loc) 528 B
import { Muncher } from './Muncher'; import { Coordinates } from '../Types/Coordinates'; export declare class NpmList implements Muncher { readonly devDependencies: boolean; private depsArray; constructor(devDependencies?: boolean); getDepList(): Promise<Array<Coordinates>>; isValid(): boolean; getSbomFromCommand(): Promise<string>; getInstalledDeps(): Promise<Array<Coordinates>>; private recurseObjectTree; private maybePushNewCoordinate; private toPurlObjTree; private toPurl; }