// Generated by IcedCoffeeScript 1.7.1-f
(function() {
  var bin, package_json, version;

  package_json = require('../package.json');

  exports.version = version = function() {
    return package_json.version;
  };

  exports.bin = bin = function() {
    var k, v, _ref;
    _ref = package_json.bin;
    for (k in _ref) {
      v = _ref[k];
      return k;
    }
    return null;
  };

  exports.fullname = function() {
    return "" + (bin()) + " v" + (version());
  };

}).call(this);