Lines Matching refs:manifest
92 const manifest = await readJson(resolve(dir, 'package.json'))
93 if (!manifest.name) {
97 pkg = `${manifest.name}${pkg.slice(1)}`
320 prettyView (packu, manifest) {
330 const unpackedSize = manifest.dist.unpackedSize &&
331 formatBytes(manifest.dist.unpackedSize, true)
332 const licenseField = manifest.license || 'Proprietary'
334 name: chalk.green(manifest.name),
335 version: chalk.green(manifest.version),
336 bins: Object.keys(manifest.bin || {}),
338 description: manifest.description,
339 deprecated: manifest.deprecated,
344 deps: Object.keys(manifest.dependencies || {}).map((dep) => {
345 return `${chalk.yellow(dep)}: ${manifest.dependencies[dep]}`
347 publisher: manifest._npmUser && unparsePerson({
348 name: chalk.yellow(manifest._npmUser.name),
349 email: chalk.cyan(manifest._npmUser.email),
352 : chalk.yellow(relativeDate(packu.time[manifest.version])),
358 manifest.bugs && (manifest.bugs.url || manifest.bugs)
360 manifest.repository && (manifest.repository.url || manifest.repository)
363 manifest.homepage && (manifest.homepage.url || manifest.homepage)
366 tarball: chalk.cyan(manifest.dist.tarball),
367 shasum: chalk.yellow(manifest.dist.shasum),
369 manifest.dist.integrity && chalk.yellow(manifest.dist.integrity),
371 manifest.dist.fileCount && chalk.yellow(manifest.dist.fileCount),