1.0.4 • Published 1 year ago

get-dep-tree v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

get-dep-tree Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Use npm's Arborist to get a dependency tree for a package.

Example

const getDepTree = require('get-dep-tree');
const { Node } = require('@npmcli/arborist');
const assert = require('assert');

getDepTree().then((tree) => {
	assert.ok(tree instanceof Node);
});