UNPKG

npm-check-updates

Version:

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

7 lines (6 loc) 345 B
import { Index } from '../types/IndexType'; import { Options } from '../types/Options'; import { VersionSpec } from '../types/VersionSpec'; /** Get peer dependencies from installed packages */ declare function getPeerDependencies(current: Index<VersionSpec>, options: Options): Promise<Index<Index<string>>>; export default getPeerDependencies;