33 lines
685 B
TypeScript
33 lines
685 B
TypeScript
export declare class NpmPackage {
|
|
name: string;
|
|
scope: string;
|
|
version: string;
|
|
description: string;
|
|
keywords: string[];
|
|
date: '2017-08-02T11:22:49.144Z';
|
|
links: {
|
|
npm: string;
|
|
homepage: string;
|
|
repository: string;
|
|
bugs: string;
|
|
};
|
|
author: {
|
|
name: 'Lossless GmbH';
|
|
};
|
|
publisher: {
|
|
username: 'gitzone';
|
|
email: 'npm@git.zone';
|
|
};
|
|
maintainers: any;
|
|
score: {
|
|
final: number;
|
|
detail: {
|
|
quality: number;
|
|
popularity: number;
|
|
maintenance: number;
|
|
};
|
|
};
|
|
searchScore: number;
|
|
constructor(descriptionArg: any);
|
|
}
|