UNPKG

npm-check-updates

Version:

Find newer versions of dependencies than what your package.json allows

9 lines (8 loc) 211 B
import { PackageFile } from './PackageFile'; /** Describes package data plus it's filepath */ export interface PackageInfo { name?: string; pkg: PackageFile; pkgFile: string; filepath: string; }