node/deps/npm/node_modules/read-installed
Rebecca Turner 468ab4519e deps: upgrade npm to 6.1.0
PR-URL: https://github.com/nodejs/node/pull/20190
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2018-05-24 23:24:45 -07:00
..
test deps: upgrade to npm 2.12.1 2015-07-06 10:28:20 -07:00
.npmignore npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00
.travis.yml deps: upgrade to npm 2.12.1 2015-07-06 10:28:20 -07:00
LICENSE npm: upgrade to 1.3.11 2013-09-07 14:31:04 -05:00
package.json deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00
read-installed.js deps: upgrade to npm 2.12.1 2015-07-06 10:28:20 -07:00
README.md npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00

read-installed

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

npm uses this.

2.0.0

Breaking changes in 2.0.0:

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

Usage

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