(function() { var packageJSON; packageJSON = require('../../package.json'); exports.version = { signature: 'version', description: 'output the version number', help: 'Display the Resin CLI, as well as the bundled NodeJS version.', action: function() { console.log(packageJSON.name + ": " + packageJSON.version); return console.log("node: " + process.version); } }; }).call(this);