2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-02-19 23:53:23 +00:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
|
|
|
var plugins = {
|
|
|
|
beautylog: require("beautylog"),
|
|
|
|
fs: require("fs-extra"),
|
|
|
|
gulp: require("gulp"),
|
|
|
|
g: {
|
|
|
|
coveralls: require("gulp-coveralls"),
|
2016-02-22 21:22:39 +00:00
|
|
|
gFunction: require("gulp-function"),
|
2016-02-19 23:53:23 +00:00
|
|
|
istanbul: require("gulp-istanbul"),
|
2016-02-22 21:22:39 +00:00
|
|
|
jsdoc3: require("gulp-jsdoc3"),
|
2016-02-19 23:53:23 +00:00
|
|
|
mocha: require("gulp-mocha"),
|
|
|
|
sourcemaps: require("gulp-sourcemaps"),
|
2016-03-12 09:21:16 +00:00
|
|
|
typescript: require("gulp-typescript"),
|
|
|
|
typings: require("gulp-typings")
|
2016-02-19 23:53:23 +00:00
|
|
|
},
|
2016-02-22 21:22:39 +00:00
|
|
|
merge2: require("merge2"),
|
|
|
|
projectinfo: require("projectinfo"),
|
2016-02-19 23:53:23 +00:00
|
|
|
sourceMapSupport: require("source-map-support").install(),
|
|
|
|
path: require("path"),
|
2016-02-22 21:22:39 +00:00
|
|
|
Q: require("q"),
|
|
|
|
shelljs: require("shelljs"),
|
2016-02-19 23:53:23 +00:00
|
|
|
smartcli: require("smartcli"),
|
2016-02-22 21:22:39 +00:00
|
|
|
smartenv: require("smartenv"),
|
2016-02-19 23:53:23 +00:00
|
|
|
smartfile: require("smartfile"),
|
2016-03-12 09:21:16 +00:00
|
|
|
smartpath: require("smartpath")
|
2016-02-19 23:53:23 +00:00
|
|
|
};
|
|
|
|
module.exports = plugins;
|