UNPKG

224 BJavaScriptView Raw
1#!/usr/bin/env node
2const inspect = require('../dist/index')
3
4inspect.buildDepTreeFromFiles('./', 'package.json', 'package-lock.json')
5 .then((tree) => {
6 console.log(JSON.stringify(tree));
7 })
8 .catch(console.error);