1.0.2 • Published 7 years ago
indated v1.0.2
Indated
It's better to be indated than outdated!
Analyze your npm project's dependencies to determine how many major/minor/patch versions behind each one is.
Contents
Installation
$ npm install --save-dev indatedUsage
assuming you have ./node_modules/.bin/ in your path, just run
$ indatedor, if you have npm > 5.2.0
$ npx indatedotherwise, run
$ node_modules/.bin/indatedOptions
By default, indated will generate a markdown table listing your project's dependencies that are one or more major versions behind the latest available. It does this by leveraging output from npm outdated.
You can easily add minor and patch versions to the output with --minor and --patch, and disable major with --no-major.
Example: show all dependencies that differ from latest only by minor version:
$ indated --no-major --minorExample Output
$ indated --major --minor
building package tree... (this may take a while)
| package | level | difference |
| ------- | ----- | ---------- |
| jest | minor | 1 |License
This project is licensed under the MIT License