You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
472 B
19 lines
472 B
/*
|
|
* multiple-properties.js: Sample of including multiple properties from a package.json file
|
|
*
|
|
* (C) 2011, Charlie Robbins
|
|
*
|
|
*/
|
|
|
|
var util = require('util'),
|
|
pkginfo = require('../lib/pkginfo')(module, 'version', 'author');
|
|
|
|
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));
|