UNPKG

react-native-bundle-visualizer

Version:
14 lines (11 loc) 255 B
const fs = require('fs'); function readPackageJSON() { return JSON.parse(fs.readFileSync('./package.json')); } function getEntryPoint() { const pkgJSON = readPackageJSON(); return pkgJSON.main || './index.js'; } module.exports = { getEntryPoint, };