tscoverage/ts/npmts.plugins.ts

25 lines
799 B
TypeScript
Raw Normal View History

2016-01-16 13:33:09 +00:00
/// <reference path="./index.ts" />
module NpmtsPlugins {
export var init = function() {
var plugins = {
beautylog: require("beautylog"),
2016-01-31 21:24:57 +00:00
fs: require("fs-extra"),
2016-01-16 13:33:09 +00:00
gulp: require("gulp"),
2016-01-18 14:15:15 +00:00
g: {
2016-02-09 04:39:31 +00:00
coveralls: require("gulp-coveralls"),
2016-02-16 09:58:42 +00:00
header: require("gulp-header"),
2016-02-09 04:39:31 +00:00
istanbul: require("gulp-istanbul"),
mocha: require("gulp-mocha"),
2016-01-18 17:59:44 +00:00
typescript: require("gulp-typescript")
2016-01-18 14:15:15 +00:00
},
mergeStream: require("merge2"),
2016-01-16 13:33:09 +00:00
path: require("path"),
2016-01-30 03:57:24 +00:00
q:require("q"),
2016-01-31 21:24:57 +00:00
smartcli: require("smartcli"),
2016-02-04 19:41:34 +00:00
smartfile: require("smartfile"),
2016-01-31 21:24:57 +00:00
typings: require("typings")
2016-01-16 13:33:09 +00:00
};
return plugins;
}
}