Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / pkginfo / examples / all-properties.js
1 /*
2  * all-properties.js: Sample of including all 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);
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));