UNPKG

pkg-down

Version:

Find the topmost package.json file.

10 lines (6 loc) 158 B
'use strict'; const findDown = require('find-down'); const pkdDown = (cwd) => { return findDown('package.json', { cwd }); }; module.exports = pkdDown;