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-01-18 17:59:44 +00:00
|
|
|
insert: require("gulp-insert"),
|
|
|
|
sequence: require("gulp-sequence"),
|
|
|
|
typescript: require("gulp-typescript")
|
|
|
|
|
2016-01-18 14:15:15 +00:00
|
|
|
},
|
2016-02-06 17:56:42 +00:00
|
|
|
mathjs: require("mathjs"),
|
2016-01-18 14:15:15 +00:00
|
|
|
mergeStream: require("merge2"),
|
2016-01-30 03:57:24 +00:00
|
|
|
mocha: require("mocha"),
|
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;
|
|
|
|
}
|
|
|
|
}
|