UNPKG

295 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const fs = require("fs");
4function readJson(path = 'package.json') {
5 try {
6 return JSON.parse(fs.readFileSync(path, 'utf8'));
7 }
8 catch (_a) {
9 return null;
10 }
11}
12exports.readJson = readJson;