UNPKG

900 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { Tree } from '@angular-devkit/schematics';
9export declare enum NodeDependencyType {
10 Default = "dependencies",
11 Dev = "devDependencies",
12 Peer = "peerDependencies",
13 Optional = "optionalDependencies"
14}
15export interface NodeDependency {
16 type: NodeDependencyType;
17 name: string;
18 version: string;
19 overwrite?: boolean;
20}
21export declare function addPackageJsonDependency(tree: Tree, dependency: NodeDependency, pkgJsonPath?: string): void;
22export declare function removePackageJsonDependency(tree: Tree, name: string, pkgJsonPath?: string): void;
23export declare function getPackageJsonDependency(tree: Tree, name: string, pkgJsonPath?: string): NodeDependency | null;