UNPKG

npm-check-updates

Version:

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

18 lines (17 loc) 688 B
import { Cacher } from './Cacher'; import { Index } from './IndexType'; import { RunOptions } from './RunOptions'; import { VersionSpec } from './VersionSpec'; /** Internal, normalized options for all ncu behavior. Includes RunOptions that are specified in the CLI or passed to the ncu module, as well as meta information including CLI arguments, package information, and ncurc config. */ export type Options = RunOptions & { args?: any[]; cacher?: Cacher; cli?: boolean; distTag?: string; json?: boolean; nodeEngineVersion?: VersionSpec; packageData?: string; peerDependencies?: Index<any>; rcConfigPath?: string; workspacePackages?: string[]; };