mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 10:03:28 +00:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
const fs = require('fs')
|
|
|
|
function getPackageJson(pkgJsonPath) {
|
|
const pkgJson = fs.readFileSync(pkgJsonPath, { encoding: 'utf-8' })
|
|
return JSON.parse(pkgJson);
|
|
}
|
|
|
|
module.exports = getPackageJson; |