aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/pkginfo/examples/target-dir.js
blob: 88770e6f52c1a1df1c32c5c0d0e447efecbdf849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * multiple-properties.js: Sample of including multiple properties from a package.json file
 *
 * (C) 2011, Charlie Robbins
 *
 */
 
var util = require('util'),
    path = require('path'),
    pkginfo = require('../lib/pkginfo')(module, { dir: path.resolve(__dirname, 'subdir' )});

exports.someFunction = function () {
  console.log('some of your custom logic here');
};

console.log('Inspecting module:');
console.dir(module.exports);

console.log('\nAll exports exposed:');
console.error(Object.keys(module.exports));