4.0.3 • Published 2 years ago

read-installed-peer v4.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

read-installed

Read all the installed packages in a folder, and return a tree structure with all the data.

This is a fork from read-installed, but with an option to skip peerDependencies.

The second argument is now an Object that contains the following keys:

  • depth optional, defaults to Infinity
  • log optional log Function
  • dev optional, default false, set to true to include devDependencies
  • nopeer optional, set to true to skip peerDependencies

Usage

var readInstalled = require("read-installed")
// optional options
var options = { dev: false, log: fn, depth: 2, nopeer: true }
readInstalled(folder, options, function (er, data) {
  ...
})