Home
last modified time | relevance | path

Searched refs:readJson (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/npm/node_modules/libnpmversion/lib/
Dindex.js1 const readJson = require('./read-json.js') constant
21 const pkg = opts.pkg || await readJson(path + '/package.json')
Dversion.js7 const readJson = require('./read-json.js') constant
86 const sw = await readJson(lock)
/third_party/node/deps/npm/lib/commands/
Downer.js9 const readJson = async (path) => { function
56 const { name } = await readJson(npm.prefix)
132 const { name } = await readJson(prefix)
Dview.js14 const readJson = async file => jsonParse(await readFile(file, 'utf8')) function
92 const manifest = await readJson(resolve(dir, 'package.json'))
/third_party/node/deps/npm/node_modules/read-package-json/lib/
Dread-json.js11 module.exports = readJson
14 readJson.extraSet = [
30 function readJson (file, log_, strict_, cb_) { function
156 readJson.extras = extras
172 var set = readJson.extraSet
/third_party/typescript/src/services/
DstringCompletions.ts491 …const packageJson = readJson(packageJsonPath, host as { readFile: (filename: string) => string | u…
701 const packageJson = readJson(packageFile, host);
936 …const contents = readJson(packageJson, host as { readFile: (filename: string) => string | undefine…
/third_party/typescript/scripts/build/
Dutils.mjs89 export function readJson(jsonPath) { function
/third_party/typescript/
DGulpfile.mjs14 import { exec, readJson, needsUpdate, getDiffTool, getDirSize, rm } from "./scripts/build/utils.mjs…
30 const libraries = readJson("./src/lib/libs.json");
/third_party/typescript/src/compiler/
DmoduleNameResolver.ts541 …isNotNeededPackage = host.fileExists(packageJsonPath) && (readJson(packageJsonPath, host) as Packa…
1891 …sOHModules ? require("json5").parse(host.readFile!(packageJsonPath)!) : readJson(packageJsonPath, …
Dutilities.ts5385 …export function readJson(path: string, host: { readFile(fileName: string): string | undefined }): … function
/third_party/typescript/lib/
DtypingsInstaller.js19608 function readJson(path, host) { function
19611 ts.readJson = readJson;
44419 …isNotNeededPackage = host.fileExists(packageJsonPath) && ts.readJson(packageJsonPath, host).typing…
45501 …Modules_1 ? require("json5").parse(host.readFile(packageJsonPath)) : ts.readJson(packageJsonPath, …
Dtsc.js15476 function readJson(path, host) { function
15479 ts.readJson = readJson;
36445 …isNotNeededPackage = host.fileExists(packageJsonPath) && ts.readJson(packageJsonPath, host).typing…
37371 …Modules_1 ? require("json5").parse(host.readFile(packageJsonPath)) : ts.readJson(packageJsonPath, …
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs11664 readJson: u(jsonFile.readFile),
11733 jsonFile.readJSON = jsonFile.readJson;