• File: read-local-package.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/lib/utils/read-local-package.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 329 bytes
  • MIME-type: text/plain
  • Charset: utf-8
exports = module.exports = readLocalPkg

var npm = require('../npm.js')
var readJson = require('read-package-json')

function readLocalPkg (cb) {
  if (npm.config.get('global')) return cb()
  var path = require('path')
  readJson(path.resolve(npm.prefix, 'package.json'), function (er, d) {
    return cb(er, d && d.name)
  })
}