blob: 74f1e17f6e37dacd0eee93fa0b105ea5fce2b862 [file] [log] [blame]
'use strict';
const findUp = require('find-up');
module.exports = async ({cwd} = {}) => findUp('package.json', {cwd});
module.exports.sync = ({cwd} = {}) => findUp.sync('package.json', {cwd});