Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / prompt / node_modules / pkginfo / examples / single-property.js
1 /*
2  * single-property.js: Sample of including a single specific properties from a package.json file
3  *
4  * (C) 2011, Charlie Robbins
5  *
6  */
7  
8 var util = require('util'),
9     pkginfo = require('../lib/pkginfo')(module, 'version');
10
11 exports.someFunction = function () {
12   console.log('some of your custom logic here');
13 };
14
15 console.log('Inspecting module:');
16 console.dir(module.exports);
17
18 console.log('\nAll exports exposed:');
19 console.error(Object.keys(module.exports));