@schematics/update
Version:
Schematics specific to updating packages
25 lines (24 loc) • 632 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { JsonSchemaForNpmPackageJsonFiles } from './package-json';
export interface NpmRepositoryPackageJson {
name: string;
requestedName: string;
description: string;
'dist-tags': {
[]: string;
};
versions: {
[]: JsonSchemaForNpmPackageJsonFiles;
};
time: {
modified: string;
created: string;
[]: string;
};
}