npm-check-updates
Version:
Find newer versions of dependencies than what your package.json allows
12 lines (11 loc) • 592 B
TypeScript
import { PackageFile } from '../types/PackageFile';
/**
* @param packageName A package name as listed in package.json's dependencies list
* @param packageJson Optional param to specify a object representation of a package.json file instead of loading from node_modules
* @returns A valid url to the root of the package's source or null if a url could not be determined
*/
declare function getRepoUrl(packageName: string, packageJson?: PackageFile, { pkgFile, }?: {
/** See: getPackageRepo pkgFile param. */
pkgFile?: string;
}): Promise<string | null>;
export default getRepoUrl;