1.0.2 • Published 4 years ago

package-outdated v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

package-outdated build license

Returns the outdated packages of a package.json file.

Install

npm install package-outdated

Usage

const readOutdated = require('package-outdated')

(async()=>{
        console.log(await readOutdated());
        //=> {foo: { current: '1.0.0', latest: '2.0.0' }, ...}

       console.log(await readOutdated({ preservePrefix: true }));
       //=> {foo: { current: '^1.0.0', latest: '2.0.0' }, ...}
        
})();

API

readOutdated(options?)

Returns the outdated packages of a package.json file.

Options

dir

Type: string Default: process.cwd()

Current working directory.

preservePrefix

Type: boolean Default: false

Preserves the semver prefix(^*~) of the current version.

Realated

Support