kaffee
Version:
Kaffee is a software project management tool similar to Maven and is written in Coffeescript. Kaffee allows you to compile, test, minify and many other tasks to make building your application simple and fun again.
34 lines (27 loc) • 753 B
JavaScript
/*
Kaffee
A software project management tool that adds more flavor to your application.
@author Fabian M. <mail.fabianm@gmail.com>
*/
(function() {
module.exports = {
Configuration: require('./configuration'),
project: {
Project: require('./project/project'),
ProjectConfiguration: require('./project/configuration'),
Workspace: require('./project/workspace')
},
event: {
EventManager: require('./event/manager'),
LogEvent: require('./event/logevent')
},
execution: {
Request: require('./execution/request'),
Result: require('./execution/result')
},
plugin: {
Plugin: require('./plugin/plugin'),
Goal: require('./plugin/goal')
}
};
}).call(this);