add travis

This commit is contained in:
2016-02-20 05:05:07 +01:00
parent 2d4b445377
commit cfcf49b154
28 changed files with 4963 additions and 0 deletions

23
ts/index.ts Normal file
View File

@@ -0,0 +1,23 @@
/// <reference path="./typings/main.d.ts" />
import plugins = require("./projectinfo.plugins");
//import classes
import ProjectinfoNPM = require("./projectinfo.npm");
var projectinfo:any = {};
projectinfo.npm = function(cwdArg){
return new ProjectinfoNPM(cwdArg);
};
/* TODO
projectinfo.git = function(){
};
projectinfo.mojo = function(){
};
*/
export = projectinfo;