skinjs
Version:
skinjs is an AOP and COP (Contract Oriented Programming ) library which enables to create a more error prone and clean code
26 lines (21 loc) • 442 B
JavaScript
module.exports = function() {
var report = './report/';
var root = './';
var config = {
/**
* Files paths
*/
alljs: [
'./lib/**/*.js',
'./*.js'
],
report: report,
root: root,
packages : [
'./package.json'
],
mocha:{reporter: 'spec'}
};
return config;
////////////////
};