• File: package-id.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/lib/utils/package-id.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 399 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict'
var moduleName = require('./module-name.js')

module.exports = function (tree) {
  var pkg = tree.package || tree
  // FIXME: Excluding the '@' here is cleaning up after the mess that
  // read-package-json makes. =(
  if (pkg._id && pkg._id !== '@') return pkg._id
  var name = moduleName(tree)
  if (pkg.version) {
    return name + '@' + pkg.version
  } else {
    return name
  }
}