Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / pkginfo / examples / array-argument.js
1 /*
2  * array-argument.js: Sample of including specific properties from a package.json file
3  *                    using Array argument syntax.
4  *
5  * (C) 2011, Charlie Robbins
6  *
7  */
8  
9 var util = require('util'),
10     pkginfo = require('../lib/pkginfo')(module, ['version', 'author']);
11
12 exports.someFunction = function () {
13   console.log('some of your custom logic here');
14 };
15
16 console.log('Inspecting module:');
17 console.dir(module.exports);
18
19 console.log('\nAll exports exposed:');
20 console.error(Object.keys(module.exports));