diff --git a/ProcessKiller-0.1.0.upx b/ProcessKiller-0.1.0.upx new file mode 100644 index 0000000..a315745 Binary files /dev/null and b/ProcessKiller-0.1.0.upx differ diff --git a/imgs/window.png b/imgs/window.png deleted file mode 100644 index 4c30aae..0000000 Binary files a/imgs/window.png and /dev/null differ diff --git a/old version/ProcessKiller-0.0.4.upx b/old version/ProcessKiller-0.0.4.upx new file mode 100644 index 0000000..334e44a Binary files /dev/null and b/old version/ProcessKiller-0.0.4.upx differ diff --git a/old version/ProcessKiller-0.0.5.upx b/old version/ProcessKiller-0.0.5.upx new file mode 100644 index 0000000..5d0e27c Binary files /dev/null and b/old version/ProcessKiller-0.0.5.upx differ diff --git a/old version/ProcessKiller-0.0.6.upx b/old version/ProcessKiller-0.0.6.upx new file mode 100644 index 0000000..e5cbf00 Binary files /dev/null and b/old version/ProcessKiller-0.0.6.upx differ diff --git a/readme.md b/readme.md index 7c60adb..436d6a1 100644 --- a/readme.md +++ b/readme.md @@ -57,7 +57,7 @@ ## 下载 -[百度网盘](https://pan.baidu.com/s/1nfBnFLMdXisWATVYBKqONw) 提取码: `fmc6` +[百度网盘](https://pan.baidu.com/s/1Q4I6LTRgrHgWm67F_xqv0A) 提取码: `nw4p` [项目地址](https://github.com/fofolee/uTools-ProcessKiller/) diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..436d6a1 --- /dev/null +++ b/src/README.md @@ -0,0 +1,78 @@ +# ProcessKiller V0.1.0 + +## 简介 + +- 列出当前进程,按内存占用从高到低排序 +- 支持关闭,重启,复制进程路径,在文件夹内显示等功能 +- 支持 window 和 macOS +- 有些进程是否能结束、路径是否能获取,取决于uTools是否以管理员权限运行 + +## 更新日志 + +**v0.1.0** + +- 增加两个功能:复制进程路径和在文件管理器中显示 +- 在输入框内增加快捷键提示 +- 支持使用 Command/Alt + 数字键快速操作 +- 重写了获取进程图标的方法 +- 重写了 window下获取进程的方法,大幅提升进入插件的速度 +- 重写多出代码,大幅压缩插件体积 + +![UTOOLS1587431167767.png](https://user-gold-cdn.xitu.io/2020/4/21/1719a4559a6f0ac4?w=804&h=610&f=png&s=170496) + +**v0.0.6** + +- 更新`windos`下显示`内存`百分比及`用户`的功能,以及默认按照内存占用率进行排序 +- 微调获取进程的相关命令语句 + +**v0.0.5** + +- 更新了对`macOS`的支持,`macOS`相比`window`多了显示`CPU`,`内存`百分比及`用户`的功能,以及默认按照内存占用率进行排序 +- 增加插件更新检测的功能 +- 修复了`windows`下可能导致无法显示进程列表的`bug`,强烈建议`windows`用户也进行升级 +- `windows`下一些`UI`微调 +- 优化重写了部分程序逻辑和代码 + +**v0.0.4** + +- 进入插件后列出所有进程 +- 通过方向键进行列表选择,`enter`关闭进程,`shift+enter`重启进程 +- 更改插件描述 +- 重新进行`upx`打包 + +**v0.0.3** + +- 增加右键重启进程的功能 + +**v0.0.2** + +- 对界面重新排版,和`uTools`统一风格,增加进程图标,同时根据进程条目调整下拉框长度 +- 获取进程命令由tasklist更换为powershell的get-process,可以获取到进程的绝对地址和描述(含中文,相对直接显示进程名更加友好),通过搜索进程名称和描述皆可以搜索到相应进程 + +## 预览 + +![0.0.2.gif](https://i.loli.net/2019/03/27/5c9ae3d193b1d.gif) + + + +## 下载 + +[百度网盘](https://pan.baidu.com/s/1Q4I6LTRgrHgWm67F_xqv0A) 提取码: `nw4p` + +[项目地址](https://github.com/fofolee/uTools-ProcessKiller/) + +[插件发布页](https://yuanliao.info/d/296) + +## 安装方法 + +将`upx`文件拖入`uTools`输入框中安装即可 + +## 关键字 + +`kill` `关闭进程` + +## 类似插件 + +[窗口管理 WindowManager](https://yuanliao.info/d/1461) + +[软件卸载 AppUninstaller]( https://yuanliao.info/d/317 ) \ No newline at end of file diff --git a/assets/hlsearch.js b/src/assets/hlsearch.js similarity index 96% rename from assets/hlsearch.js rename to src/assets/hlsearch.js index ad02b41..c63781f 100644 --- a/assets/hlsearch.js +++ b/src/assets/hlsearch.js @@ -1,71 +1,71 @@ -/* - -highlight v3 !! Modified by Jon Raasch (http://jonraasch.com) to fix IE6 bug !! - -Highlights arbitrary terms. - - - -MIT license. - -Johann Burkard - - - -*/ - -jQuery.fn.highlight = function(pat, hlclass) { - function innerHighlight(node, pat) { - var skip = 0; - if (node.nodeType == 3) { - var pos = node.data.toUpperCase().indexOf(pat); - if (pos >= 0) { - var spannode = document.createElement('span'); - spannode.className = hlclass; - var middlebit = node.splitText(pos); - var endbit = middlebit.splitText(pat.length); - var middleclone = middlebit.cloneNode(true); - spannode.appendChild(middleclone); - middlebit.parentNode.replaceChild(spannode, middlebit); - skip = 1; - } - } - else if (node.nodeType == 1 && node.childNodes && !/(script|style)/i.test(node.tagName)) { - for (var i = 0; i < node.childNodes.length; ++i) { - i += innerHighlight(node.childNodes[i], pat); - } - } - return skip; - } - return this.each(function() { - innerHighlight(this, pat.toUpperCase()); - }); -}; - -jQuery.fn.removeHighlight = function(hlclass) { - function newNormalize(node) { - for (var i = 0, children = node.childNodes, nodeCount = children.length; i < nodeCount; i++) { - var child = children[i]; - if (child.nodeType == 1) { - newNormalize(child); - continue; - } - if (child.nodeType != 3) { continue; } - var next = child.nextSibling; - if (next == null || next.nodeType != 3) { continue; } - var combined_text = child.nodeValue + next.nodeValue; - new_node = node.ownerDocument.createTextNode(combined_text); - node.insertBefore(new_node, child); - node.removeChild(child); - node.removeChild(next); - i--; - nodeCount--; - } - } - - return this.find("span." + hlclass).each(function() { - var thisParent = this.parentNode; - thisParent.replaceChild(this.firstChild, this); - newNormalize(thisParent); - }).end(); +/* + +highlight v3 !! Modified by Jon Raasch (http://jonraasch.com) to fix IE6 bug !! + +Highlights arbitrary terms. + + + +MIT license. + +Johann Burkard + + + +*/ + +jQuery.fn.highlight = function(pat, hlclass) { + function innerHighlight(node, pat) { + var skip = 0; + if (node.nodeType == 3) { + var pos = node.data.toUpperCase().indexOf(pat); + if (pos >= 0) { + var spannode = document.createElement('span'); + spannode.className = hlclass; + var middlebit = node.splitText(pos); + var endbit = middlebit.splitText(pat.length); + var middleclone = middlebit.cloneNode(true); + spannode.appendChild(middleclone); + middlebit.parentNode.replaceChild(spannode, middlebit); + skip = 1; + } + } + else if (node.nodeType == 1 && node.childNodes && !/(script|style)/i.test(node.tagName)) { + for (var i = 0; i < node.childNodes.length; ++i) { + i += innerHighlight(node.childNodes[i], pat); + } + } + return skip; + } + return this.each(function() { + innerHighlight(this, pat.toUpperCase()); + }); +}; + +jQuery.fn.removeHighlight = function(hlclass) { + function newNormalize(node) { + for (var i = 0, children = node.childNodes, nodeCount = children.length; i < nodeCount; i++) { + var child = children[i]; + if (child.nodeType == 1) { + newNormalize(child); + continue; + } + if (child.nodeType != 3) { continue; } + var next = child.nextSibling; + if (next == null || next.nodeType != 3) { continue; } + var combined_text = child.nodeValue + next.nodeValue; + new_node = node.ownerDocument.createTextNode(combined_text); + node.insertBefore(new_node, child); + node.removeChild(child); + node.removeChild(next); + i--; + nodeCount--; + } + } + + return this.find("span." + hlclass).each(function() { + var thisParent = this.parentNode; + thisParent.replaceChild(this.firstChild, this); + newNormalize(thisParent); + }).end(); }; \ No newline at end of file diff --git a/assets/index.js b/src/assets/index.js similarity index 100% rename from assets/index.js rename to src/assets/index.js diff --git a/assets/jquery-3.3.1.min.js b/src/assets/jquery-3.3.1.min.js similarity index 100% rename from assets/jquery-3.3.1.min.js rename to src/assets/jquery-3.3.1.min.js diff --git a/assets/mousetrap.min.js b/src/assets/mousetrap.min.js similarity index 100% rename from assets/mousetrap.min.js rename to src/assets/mousetrap.min.js diff --git a/assets/style.css b/src/assets/style.css similarity index 100% rename from assets/style.css rename to src/assets/style.css diff --git a/bin/ProcessKiller.exe b/src/bin/ProcessKiller.exe similarity index 100% rename from bin/ProcessKiller.exe rename to src/bin/ProcessKiller.exe diff --git a/imgs/darwin.png b/src/imgs/darwin.png similarity index 100% rename from imgs/darwin.png rename to src/imgs/darwin.png diff --git a/src/imgs/window.png b/src/imgs/window.png new file mode 100644 index 0000000..6addba5 Binary files /dev/null and b/src/imgs/window.png differ diff --git a/index.html b/src/index.html similarity index 100% rename from index.html rename to src/index.html diff --git a/logo.png b/src/logo.png similarity index 100% rename from logo.png rename to src/logo.png diff --git a/node_modules/iconv-lite/Changelog.md b/src/node_modules/iconv-lite/Changelog.md similarity index 100% rename from node_modules/iconv-lite/Changelog.md rename to src/node_modules/iconv-lite/Changelog.md diff --git a/node_modules/iconv-lite/LICENSE b/src/node_modules/iconv-lite/LICENSE similarity index 100% rename from node_modules/iconv-lite/LICENSE rename to src/node_modules/iconv-lite/LICENSE diff --git a/node_modules/iconv-lite/README.md b/src/node_modules/iconv-lite/README.md similarity index 100% rename from node_modules/iconv-lite/README.md rename to src/node_modules/iconv-lite/README.md diff --git a/node_modules/iconv-lite/encodings/dbcs-codec.js b/src/node_modules/iconv-lite/encodings/dbcs-codec.js similarity index 100% rename from node_modules/iconv-lite/encodings/dbcs-codec.js rename to src/node_modules/iconv-lite/encodings/dbcs-codec.js diff --git a/node_modules/iconv-lite/encodings/dbcs-data.js b/src/node_modules/iconv-lite/encodings/dbcs-data.js similarity index 100% rename from node_modules/iconv-lite/encodings/dbcs-data.js rename to src/node_modules/iconv-lite/encodings/dbcs-data.js diff --git a/node_modules/iconv-lite/encodings/index.js b/src/node_modules/iconv-lite/encodings/index.js similarity index 100% rename from node_modules/iconv-lite/encodings/index.js rename to src/node_modules/iconv-lite/encodings/index.js diff --git a/node_modules/iconv-lite/encodings/internal.js b/src/node_modules/iconv-lite/encodings/internal.js similarity index 100% rename from node_modules/iconv-lite/encodings/internal.js rename to src/node_modules/iconv-lite/encodings/internal.js diff --git a/node_modules/iconv-lite/encodings/sbcs-codec.js b/src/node_modules/iconv-lite/encodings/sbcs-codec.js similarity index 100% rename from node_modules/iconv-lite/encodings/sbcs-codec.js rename to src/node_modules/iconv-lite/encodings/sbcs-codec.js diff --git a/node_modules/iconv-lite/encodings/sbcs-data-generated.js b/src/node_modules/iconv-lite/encodings/sbcs-data-generated.js similarity index 100% rename from node_modules/iconv-lite/encodings/sbcs-data-generated.js rename to src/node_modules/iconv-lite/encodings/sbcs-data-generated.js diff --git a/node_modules/iconv-lite/encodings/sbcs-data.js b/src/node_modules/iconv-lite/encodings/sbcs-data.js similarity index 100% rename from node_modules/iconv-lite/encodings/sbcs-data.js rename to src/node_modules/iconv-lite/encodings/sbcs-data.js diff --git a/node_modules/iconv-lite/encodings/tables/big5-added.json b/src/node_modules/iconv-lite/encodings/tables/big5-added.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/big5-added.json rename to src/node_modules/iconv-lite/encodings/tables/big5-added.json diff --git a/node_modules/iconv-lite/encodings/tables/cp936.json b/src/node_modules/iconv-lite/encodings/tables/cp936.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/cp936.json rename to src/node_modules/iconv-lite/encodings/tables/cp936.json diff --git a/node_modules/iconv-lite/encodings/tables/cp949.json b/src/node_modules/iconv-lite/encodings/tables/cp949.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/cp949.json rename to src/node_modules/iconv-lite/encodings/tables/cp949.json diff --git a/node_modules/iconv-lite/encodings/tables/cp950.json b/src/node_modules/iconv-lite/encodings/tables/cp950.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/cp950.json rename to src/node_modules/iconv-lite/encodings/tables/cp950.json diff --git a/node_modules/iconv-lite/encodings/tables/eucjp.json b/src/node_modules/iconv-lite/encodings/tables/eucjp.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/eucjp.json rename to src/node_modules/iconv-lite/encodings/tables/eucjp.json diff --git a/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json b/src/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/gb18030-ranges.json rename to src/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json diff --git a/node_modules/iconv-lite/encodings/tables/gbk-added.json b/src/node_modules/iconv-lite/encodings/tables/gbk-added.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/gbk-added.json rename to src/node_modules/iconv-lite/encodings/tables/gbk-added.json diff --git a/node_modules/iconv-lite/encodings/tables/shiftjis.json b/src/node_modules/iconv-lite/encodings/tables/shiftjis.json similarity index 100% rename from node_modules/iconv-lite/encodings/tables/shiftjis.json rename to src/node_modules/iconv-lite/encodings/tables/shiftjis.json diff --git a/node_modules/iconv-lite/encodings/utf16.js b/src/node_modules/iconv-lite/encodings/utf16.js similarity index 100% rename from node_modules/iconv-lite/encodings/utf16.js rename to src/node_modules/iconv-lite/encodings/utf16.js diff --git a/node_modules/iconv-lite/encodings/utf7.js b/src/node_modules/iconv-lite/encodings/utf7.js similarity index 100% rename from node_modules/iconv-lite/encodings/utf7.js rename to src/node_modules/iconv-lite/encodings/utf7.js diff --git a/node_modules/iconv-lite/lib/bom-handling.js b/src/node_modules/iconv-lite/lib/bom-handling.js similarity index 100% rename from node_modules/iconv-lite/lib/bom-handling.js rename to src/node_modules/iconv-lite/lib/bom-handling.js diff --git a/node_modules/iconv-lite/lib/extend-node.js b/src/node_modules/iconv-lite/lib/extend-node.js similarity index 100% rename from node_modules/iconv-lite/lib/extend-node.js rename to src/node_modules/iconv-lite/lib/extend-node.js diff --git a/node_modules/iconv-lite/lib/index.d.ts b/src/node_modules/iconv-lite/lib/index.d.ts similarity index 100% rename from node_modules/iconv-lite/lib/index.d.ts rename to src/node_modules/iconv-lite/lib/index.d.ts diff --git a/node_modules/iconv-lite/lib/index.js b/src/node_modules/iconv-lite/lib/index.js similarity index 100% rename from node_modules/iconv-lite/lib/index.js rename to src/node_modules/iconv-lite/lib/index.js diff --git a/node_modules/iconv-lite/lib/streams.js b/src/node_modules/iconv-lite/lib/streams.js similarity index 100% rename from node_modules/iconv-lite/lib/streams.js rename to src/node_modules/iconv-lite/lib/streams.js diff --git a/node_modules/iconv-lite/package.json b/src/node_modules/iconv-lite/package.json similarity index 100% rename from node_modules/iconv-lite/package.json rename to src/node_modules/iconv-lite/package.json diff --git a/node_modules/jschardet/CONTRIBUTORS b/src/node_modules/jschardet/CONTRIBUTORS similarity index 100% rename from node_modules/jschardet/CONTRIBUTORS rename to src/node_modules/jschardet/CONTRIBUTORS diff --git a/node_modules/jschardet/LICENSE b/src/node_modules/jschardet/LICENSE similarity index 100% rename from node_modules/jschardet/LICENSE rename to src/node_modules/jschardet/LICENSE diff --git a/node_modules/jschardet/README.md b/src/node_modules/jschardet/README.md similarity index 100% rename from node_modules/jschardet/README.md rename to src/node_modules/jschardet/README.md diff --git a/node_modules/jschardet/dist/jschardet.js b/src/node_modules/jschardet/dist/jschardet.js similarity index 100% rename from node_modules/jschardet/dist/jschardet.js rename to src/node_modules/jschardet/dist/jschardet.js diff --git a/node_modules/jschardet/dist/jschardet.min.js b/src/node_modules/jschardet/dist/jschardet.min.js similarity index 100% rename from node_modules/jschardet/dist/jschardet.min.js rename to src/node_modules/jschardet/dist/jschardet.min.js diff --git a/node_modules/jschardet/index.js b/src/node_modules/jschardet/index.js similarity index 100% rename from node_modules/jschardet/index.js rename to src/node_modules/jschardet/index.js diff --git a/node_modules/jschardet/package.json b/src/node_modules/jschardet/package.json similarity index 100% rename from node_modules/jschardet/package.json rename to src/node_modules/jschardet/package.json diff --git a/node_modules/jschardet/src/big5freq.js b/src/node_modules/jschardet/src/big5freq.js similarity index 100% rename from node_modules/jschardet/src/big5freq.js rename to src/node_modules/jschardet/src/big5freq.js diff --git a/node_modules/jschardet/src/big5prober.js b/src/node_modules/jschardet/src/big5prober.js similarity index 100% rename from node_modules/jschardet/src/big5prober.js rename to src/node_modules/jschardet/src/big5prober.js diff --git a/node_modules/jschardet/src/chardistribution.js b/src/node_modules/jschardet/src/chardistribution.js similarity index 100% rename from node_modules/jschardet/src/chardistribution.js rename to src/node_modules/jschardet/src/chardistribution.js diff --git a/node_modules/jschardet/src/charsetgroupprober.js b/src/node_modules/jschardet/src/charsetgroupprober.js similarity index 100% rename from node_modules/jschardet/src/charsetgroupprober.js rename to src/node_modules/jschardet/src/charsetgroupprober.js diff --git a/node_modules/jschardet/src/charsetprober.js b/src/node_modules/jschardet/src/charsetprober.js similarity index 100% rename from node_modules/jschardet/src/charsetprober.js rename to src/node_modules/jschardet/src/charsetprober.js diff --git a/node_modules/jschardet/src/codingstatemachine.js b/src/node_modules/jschardet/src/codingstatemachine.js similarity index 100% rename from node_modules/jschardet/src/codingstatemachine.js rename to src/node_modules/jschardet/src/codingstatemachine.js diff --git a/node_modules/jschardet/src/constants.js b/src/node_modules/jschardet/src/constants.js similarity index 100% rename from node_modules/jschardet/src/constants.js rename to src/node_modules/jschardet/src/constants.js diff --git a/node_modules/jschardet/src/escprober.js b/src/node_modules/jschardet/src/escprober.js similarity index 100% rename from node_modules/jschardet/src/escprober.js rename to src/node_modules/jschardet/src/escprober.js diff --git a/node_modules/jschardet/src/escsm.js b/src/node_modules/jschardet/src/escsm.js similarity index 100% rename from node_modules/jschardet/src/escsm.js rename to src/node_modules/jschardet/src/escsm.js diff --git a/node_modules/jschardet/src/eucjpprober.js b/src/node_modules/jschardet/src/eucjpprober.js similarity index 100% rename from node_modules/jschardet/src/eucjpprober.js rename to src/node_modules/jschardet/src/eucjpprober.js diff --git a/node_modules/jschardet/src/euckrfreq.js b/src/node_modules/jschardet/src/euckrfreq.js similarity index 100% rename from node_modules/jschardet/src/euckrfreq.js rename to src/node_modules/jschardet/src/euckrfreq.js diff --git a/node_modules/jschardet/src/euckrprober.js b/src/node_modules/jschardet/src/euckrprober.js similarity index 100% rename from node_modules/jschardet/src/euckrprober.js rename to src/node_modules/jschardet/src/euckrprober.js diff --git a/node_modules/jschardet/src/euctwfreq.js b/src/node_modules/jschardet/src/euctwfreq.js similarity index 100% rename from node_modules/jschardet/src/euctwfreq.js rename to src/node_modules/jschardet/src/euctwfreq.js diff --git a/node_modules/jschardet/src/euctwprober.js b/src/node_modules/jschardet/src/euctwprober.js similarity index 100% rename from node_modules/jschardet/src/euctwprober.js rename to src/node_modules/jschardet/src/euctwprober.js diff --git a/node_modules/jschardet/src/gb2312freq.js b/src/node_modules/jschardet/src/gb2312freq.js similarity index 100% rename from node_modules/jschardet/src/gb2312freq.js rename to src/node_modules/jschardet/src/gb2312freq.js diff --git a/node_modules/jschardet/src/gb2312prober.js b/src/node_modules/jschardet/src/gb2312prober.js similarity index 100% rename from node_modules/jschardet/src/gb2312prober.js rename to src/node_modules/jschardet/src/gb2312prober.js diff --git a/node_modules/jschardet/src/hebrewprober.js b/src/node_modules/jschardet/src/hebrewprober.js similarity index 100% rename from node_modules/jschardet/src/hebrewprober.js rename to src/node_modules/jschardet/src/hebrewprober.js diff --git a/node_modules/jschardet/src/index.js b/src/node_modules/jschardet/src/index.js similarity index 100% rename from node_modules/jschardet/src/index.js rename to src/node_modules/jschardet/src/index.js diff --git a/node_modules/jschardet/src/jisfreq.js b/src/node_modules/jschardet/src/jisfreq.js similarity index 100% rename from node_modules/jschardet/src/jisfreq.js rename to src/node_modules/jschardet/src/jisfreq.js diff --git a/node_modules/jschardet/src/jpcntx.js b/src/node_modules/jschardet/src/jpcntx.js similarity index 100% rename from node_modules/jschardet/src/jpcntx.js rename to src/node_modules/jschardet/src/jpcntx.js diff --git a/node_modules/jschardet/src/langbulgarianmodel.js b/src/node_modules/jschardet/src/langbulgarianmodel.js similarity index 100% rename from node_modules/jschardet/src/langbulgarianmodel.js rename to src/node_modules/jschardet/src/langbulgarianmodel.js diff --git a/node_modules/jschardet/src/langcyrillicmodel.js b/src/node_modules/jschardet/src/langcyrillicmodel.js similarity index 100% rename from node_modules/jschardet/src/langcyrillicmodel.js rename to src/node_modules/jschardet/src/langcyrillicmodel.js diff --git a/node_modules/jschardet/src/langgreekmodel.js b/src/node_modules/jschardet/src/langgreekmodel.js similarity index 100% rename from node_modules/jschardet/src/langgreekmodel.js rename to src/node_modules/jschardet/src/langgreekmodel.js diff --git a/node_modules/jschardet/src/langhebrewmodel.js b/src/node_modules/jschardet/src/langhebrewmodel.js similarity index 100% rename from node_modules/jschardet/src/langhebrewmodel.js rename to src/node_modules/jschardet/src/langhebrewmodel.js diff --git a/node_modules/jschardet/src/langhungarianmodel.js b/src/node_modules/jschardet/src/langhungarianmodel.js similarity index 100% rename from node_modules/jschardet/src/langhungarianmodel.js rename to src/node_modules/jschardet/src/langhungarianmodel.js diff --git a/node_modules/jschardet/src/langthaimodel.js b/src/node_modules/jschardet/src/langthaimodel.js similarity index 100% rename from node_modules/jschardet/src/langthaimodel.js rename to src/node_modules/jschardet/src/langthaimodel.js diff --git a/node_modules/jschardet/src/latin1prober.js b/src/node_modules/jschardet/src/latin1prober.js similarity index 100% rename from node_modules/jschardet/src/latin1prober.js rename to src/node_modules/jschardet/src/latin1prober.js diff --git a/node_modules/jschardet/src/logger.js b/src/node_modules/jschardet/src/logger.js similarity index 100% rename from node_modules/jschardet/src/logger.js rename to src/node_modules/jschardet/src/logger.js diff --git a/node_modules/jschardet/src/mbcharsetprober.js b/src/node_modules/jschardet/src/mbcharsetprober.js similarity index 100% rename from node_modules/jschardet/src/mbcharsetprober.js rename to src/node_modules/jschardet/src/mbcharsetprober.js diff --git a/node_modules/jschardet/src/mbcsgroupprober.js b/src/node_modules/jschardet/src/mbcsgroupprober.js similarity index 100% rename from node_modules/jschardet/src/mbcsgroupprober.js rename to src/node_modules/jschardet/src/mbcsgroupprober.js diff --git a/node_modules/jschardet/src/mbcssm/big5.js b/src/node_modules/jschardet/src/mbcssm/big5.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/big5.js rename to src/node_modules/jschardet/src/mbcssm/big5.js diff --git a/node_modules/jschardet/src/mbcssm/eucjp.js b/src/node_modules/jschardet/src/mbcssm/eucjp.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/eucjp.js rename to src/node_modules/jschardet/src/mbcssm/eucjp.js diff --git a/node_modules/jschardet/src/mbcssm/euckr.js b/src/node_modules/jschardet/src/mbcssm/euckr.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/euckr.js rename to src/node_modules/jschardet/src/mbcssm/euckr.js diff --git a/node_modules/jschardet/src/mbcssm/euctw.js b/src/node_modules/jschardet/src/mbcssm/euctw.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/euctw.js rename to src/node_modules/jschardet/src/mbcssm/euctw.js diff --git a/node_modules/jschardet/src/mbcssm/gb2312.js b/src/node_modules/jschardet/src/mbcssm/gb2312.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/gb2312.js rename to src/node_modules/jschardet/src/mbcssm/gb2312.js diff --git a/node_modules/jschardet/src/mbcssm/sjis.js b/src/node_modules/jschardet/src/mbcssm/sjis.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/sjis.js rename to src/node_modules/jschardet/src/mbcssm/sjis.js diff --git a/node_modules/jschardet/src/mbcssm/ucs2be.js b/src/node_modules/jschardet/src/mbcssm/ucs2be.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/ucs2be.js rename to src/node_modules/jschardet/src/mbcssm/ucs2be.js diff --git a/node_modules/jschardet/src/mbcssm/ucs2le.js b/src/node_modules/jschardet/src/mbcssm/ucs2le.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/ucs2le.js rename to src/node_modules/jschardet/src/mbcssm/ucs2le.js diff --git a/node_modules/jschardet/src/mbcssm/utf8.js b/src/node_modules/jschardet/src/mbcssm/utf8.js similarity index 100% rename from node_modules/jschardet/src/mbcssm/utf8.js rename to src/node_modules/jschardet/src/mbcssm/utf8.js diff --git a/node_modules/jschardet/src/sbcharsetprober.js b/src/node_modules/jschardet/src/sbcharsetprober.js similarity index 100% rename from node_modules/jschardet/src/sbcharsetprober.js rename to src/node_modules/jschardet/src/sbcharsetprober.js diff --git a/node_modules/jschardet/src/sbcsgroupprober.js b/src/node_modules/jschardet/src/sbcsgroupprober.js similarity index 100% rename from node_modules/jschardet/src/sbcsgroupprober.js rename to src/node_modules/jschardet/src/sbcsgroupprober.js diff --git a/node_modules/jschardet/src/sjisprober.js b/src/node_modules/jschardet/src/sjisprober.js similarity index 100% rename from node_modules/jschardet/src/sjisprober.js rename to src/node_modules/jschardet/src/sjisprober.js diff --git a/node_modules/jschardet/src/universaldetector.js b/src/node_modules/jschardet/src/universaldetector.js similarity index 100% rename from node_modules/jschardet/src/universaldetector.js rename to src/node_modules/jschardet/src/universaldetector.js diff --git a/node_modules/jschardet/src/utf8prober.js b/src/node_modules/jschardet/src/utf8prober.js similarity index 100% rename from node_modules/jschardet/src/utf8prober.js rename to src/node_modules/jschardet/src/utf8prober.js diff --git a/node_modules/jschardet/tests/index.html b/src/node_modules/jschardet/tests/index.html similarity index 100% rename from node_modules/jschardet/tests/index.html rename to src/node_modules/jschardet/tests/index.html diff --git a/node_modules/jschardet/tests/jschardet.js b/src/node_modules/jschardet/tests/jschardet.js similarity index 100% rename from node_modules/jschardet/tests/jschardet.js rename to src/node_modules/jschardet/tests/jschardet.js diff --git a/node_modules/jschardet/tests/qunit/qunit.css b/src/node_modules/jschardet/tests/qunit/qunit.css similarity index 100% rename from node_modules/jschardet/tests/qunit/qunit.css rename to src/node_modules/jschardet/tests/qunit/qunit.css diff --git a/node_modules/jschardet/tests/qunit/qunit.js b/src/node_modules/jschardet/tests/qunit/qunit.js similarity index 100% rename from node_modules/jschardet/tests/qunit/qunit.js rename to src/node_modules/jschardet/tests/qunit/qunit.js diff --git a/node_modules/lodash/LICENSE b/src/node_modules/lodash/LICENSE similarity index 100% rename from node_modules/lodash/LICENSE rename to src/node_modules/lodash/LICENSE diff --git a/node_modules/lodash/README.md b/src/node_modules/lodash/README.md similarity index 100% rename from node_modules/lodash/README.md rename to src/node_modules/lodash/README.md diff --git a/node_modules/lodash/array.js b/src/node_modules/lodash/array.js similarity index 100% rename from node_modules/lodash/array.js rename to src/node_modules/lodash/array.js diff --git a/node_modules/lodash/array/chunk.js b/src/node_modules/lodash/array/chunk.js similarity index 100% rename from node_modules/lodash/array/chunk.js rename to src/node_modules/lodash/array/chunk.js diff --git a/node_modules/lodash/array/compact.js b/src/node_modules/lodash/array/compact.js similarity index 100% rename from node_modules/lodash/array/compact.js rename to src/node_modules/lodash/array/compact.js diff --git a/node_modules/lodash/array/difference.js b/src/node_modules/lodash/array/difference.js similarity index 100% rename from node_modules/lodash/array/difference.js rename to src/node_modules/lodash/array/difference.js diff --git a/node_modules/lodash/array/drop.js b/src/node_modules/lodash/array/drop.js similarity index 100% rename from node_modules/lodash/array/drop.js rename to src/node_modules/lodash/array/drop.js diff --git a/node_modules/lodash/array/dropRight.js b/src/node_modules/lodash/array/dropRight.js similarity index 100% rename from node_modules/lodash/array/dropRight.js rename to src/node_modules/lodash/array/dropRight.js diff --git a/node_modules/lodash/array/dropRightWhile.js b/src/node_modules/lodash/array/dropRightWhile.js similarity index 100% rename from node_modules/lodash/array/dropRightWhile.js rename to src/node_modules/lodash/array/dropRightWhile.js diff --git a/node_modules/lodash/array/dropWhile.js b/src/node_modules/lodash/array/dropWhile.js similarity index 100% rename from node_modules/lodash/array/dropWhile.js rename to src/node_modules/lodash/array/dropWhile.js diff --git a/node_modules/lodash/array/fill.js b/src/node_modules/lodash/array/fill.js similarity index 100% rename from node_modules/lodash/array/fill.js rename to src/node_modules/lodash/array/fill.js diff --git a/node_modules/lodash/array/findIndex.js b/src/node_modules/lodash/array/findIndex.js similarity index 100% rename from node_modules/lodash/array/findIndex.js rename to src/node_modules/lodash/array/findIndex.js diff --git a/node_modules/lodash/array/findLastIndex.js b/src/node_modules/lodash/array/findLastIndex.js similarity index 100% rename from node_modules/lodash/array/findLastIndex.js rename to src/node_modules/lodash/array/findLastIndex.js diff --git a/node_modules/lodash/array/first.js b/src/node_modules/lodash/array/first.js similarity index 100% rename from node_modules/lodash/array/first.js rename to src/node_modules/lodash/array/first.js diff --git a/node_modules/lodash/array/flatten.js b/src/node_modules/lodash/array/flatten.js similarity index 100% rename from node_modules/lodash/array/flatten.js rename to src/node_modules/lodash/array/flatten.js diff --git a/node_modules/lodash/array/flattenDeep.js b/src/node_modules/lodash/array/flattenDeep.js similarity index 100% rename from node_modules/lodash/array/flattenDeep.js rename to src/node_modules/lodash/array/flattenDeep.js diff --git a/node_modules/lodash/array/head.js b/src/node_modules/lodash/array/head.js similarity index 100% rename from node_modules/lodash/array/head.js rename to src/node_modules/lodash/array/head.js diff --git a/node_modules/lodash/array/indexOf.js b/src/node_modules/lodash/array/indexOf.js similarity index 100% rename from node_modules/lodash/array/indexOf.js rename to src/node_modules/lodash/array/indexOf.js diff --git a/node_modules/lodash/array/initial.js b/src/node_modules/lodash/array/initial.js similarity index 100% rename from node_modules/lodash/array/initial.js rename to src/node_modules/lodash/array/initial.js diff --git a/node_modules/lodash/array/intersection.js b/src/node_modules/lodash/array/intersection.js similarity index 100% rename from node_modules/lodash/array/intersection.js rename to src/node_modules/lodash/array/intersection.js diff --git a/node_modules/lodash/array/last.js b/src/node_modules/lodash/array/last.js similarity index 100% rename from node_modules/lodash/array/last.js rename to src/node_modules/lodash/array/last.js diff --git a/node_modules/lodash/array/lastIndexOf.js b/src/node_modules/lodash/array/lastIndexOf.js similarity index 100% rename from node_modules/lodash/array/lastIndexOf.js rename to src/node_modules/lodash/array/lastIndexOf.js diff --git a/node_modules/lodash/array/object.js b/src/node_modules/lodash/array/object.js similarity index 100% rename from node_modules/lodash/array/object.js rename to src/node_modules/lodash/array/object.js diff --git a/node_modules/lodash/array/pull.js b/src/node_modules/lodash/array/pull.js similarity index 100% rename from node_modules/lodash/array/pull.js rename to src/node_modules/lodash/array/pull.js diff --git a/node_modules/lodash/array/pullAt.js b/src/node_modules/lodash/array/pullAt.js similarity index 100% rename from node_modules/lodash/array/pullAt.js rename to src/node_modules/lodash/array/pullAt.js diff --git a/node_modules/lodash/array/remove.js b/src/node_modules/lodash/array/remove.js similarity index 100% rename from node_modules/lodash/array/remove.js rename to src/node_modules/lodash/array/remove.js diff --git a/node_modules/lodash/array/rest.js b/src/node_modules/lodash/array/rest.js similarity index 100% rename from node_modules/lodash/array/rest.js rename to src/node_modules/lodash/array/rest.js diff --git a/node_modules/lodash/array/slice.js b/src/node_modules/lodash/array/slice.js similarity index 100% rename from node_modules/lodash/array/slice.js rename to src/node_modules/lodash/array/slice.js diff --git a/node_modules/lodash/array/sortedIndex.js b/src/node_modules/lodash/array/sortedIndex.js similarity index 100% rename from node_modules/lodash/array/sortedIndex.js rename to src/node_modules/lodash/array/sortedIndex.js diff --git a/node_modules/lodash/array/sortedLastIndex.js b/src/node_modules/lodash/array/sortedLastIndex.js similarity index 100% rename from node_modules/lodash/array/sortedLastIndex.js rename to src/node_modules/lodash/array/sortedLastIndex.js diff --git a/node_modules/lodash/array/tail.js b/src/node_modules/lodash/array/tail.js similarity index 100% rename from node_modules/lodash/array/tail.js rename to src/node_modules/lodash/array/tail.js diff --git a/node_modules/lodash/array/take.js b/src/node_modules/lodash/array/take.js similarity index 100% rename from node_modules/lodash/array/take.js rename to src/node_modules/lodash/array/take.js diff --git a/node_modules/lodash/array/takeRight.js b/src/node_modules/lodash/array/takeRight.js similarity index 100% rename from node_modules/lodash/array/takeRight.js rename to src/node_modules/lodash/array/takeRight.js diff --git a/node_modules/lodash/array/takeRightWhile.js b/src/node_modules/lodash/array/takeRightWhile.js similarity index 100% rename from node_modules/lodash/array/takeRightWhile.js rename to src/node_modules/lodash/array/takeRightWhile.js diff --git a/node_modules/lodash/array/takeWhile.js b/src/node_modules/lodash/array/takeWhile.js similarity index 100% rename from node_modules/lodash/array/takeWhile.js rename to src/node_modules/lodash/array/takeWhile.js diff --git a/node_modules/lodash/array/union.js b/src/node_modules/lodash/array/union.js similarity index 100% rename from node_modules/lodash/array/union.js rename to src/node_modules/lodash/array/union.js diff --git a/node_modules/lodash/array/uniq.js b/src/node_modules/lodash/array/uniq.js similarity index 100% rename from node_modules/lodash/array/uniq.js rename to src/node_modules/lodash/array/uniq.js diff --git a/node_modules/lodash/array/unique.js b/src/node_modules/lodash/array/unique.js similarity index 100% rename from node_modules/lodash/array/unique.js rename to src/node_modules/lodash/array/unique.js diff --git a/node_modules/lodash/array/unzip.js b/src/node_modules/lodash/array/unzip.js similarity index 100% rename from node_modules/lodash/array/unzip.js rename to src/node_modules/lodash/array/unzip.js diff --git a/node_modules/lodash/array/unzipWith.js b/src/node_modules/lodash/array/unzipWith.js similarity index 100% rename from node_modules/lodash/array/unzipWith.js rename to src/node_modules/lodash/array/unzipWith.js diff --git a/node_modules/lodash/array/without.js b/src/node_modules/lodash/array/without.js similarity index 100% rename from node_modules/lodash/array/without.js rename to src/node_modules/lodash/array/without.js diff --git a/node_modules/lodash/array/xor.js b/src/node_modules/lodash/array/xor.js similarity index 100% rename from node_modules/lodash/array/xor.js rename to src/node_modules/lodash/array/xor.js diff --git a/node_modules/lodash/array/zip.js b/src/node_modules/lodash/array/zip.js similarity index 100% rename from node_modules/lodash/array/zip.js rename to src/node_modules/lodash/array/zip.js diff --git a/node_modules/lodash/array/zipObject.js b/src/node_modules/lodash/array/zipObject.js similarity index 100% rename from node_modules/lodash/array/zipObject.js rename to src/node_modules/lodash/array/zipObject.js diff --git a/node_modules/lodash/array/zipWith.js b/src/node_modules/lodash/array/zipWith.js similarity index 100% rename from node_modules/lodash/array/zipWith.js rename to src/node_modules/lodash/array/zipWith.js diff --git a/node_modules/lodash/chain.js b/src/node_modules/lodash/chain.js similarity index 100% rename from node_modules/lodash/chain.js rename to src/node_modules/lodash/chain.js diff --git a/node_modules/lodash/chain/chain.js b/src/node_modules/lodash/chain/chain.js similarity index 100% rename from node_modules/lodash/chain/chain.js rename to src/node_modules/lodash/chain/chain.js diff --git a/node_modules/lodash/chain/commit.js b/src/node_modules/lodash/chain/commit.js similarity index 100% rename from node_modules/lodash/chain/commit.js rename to src/node_modules/lodash/chain/commit.js diff --git a/node_modules/lodash/chain/concat.js b/src/node_modules/lodash/chain/concat.js similarity index 100% rename from node_modules/lodash/chain/concat.js rename to src/node_modules/lodash/chain/concat.js diff --git a/node_modules/lodash/chain/lodash.js b/src/node_modules/lodash/chain/lodash.js similarity index 100% rename from node_modules/lodash/chain/lodash.js rename to src/node_modules/lodash/chain/lodash.js diff --git a/node_modules/lodash/chain/plant.js b/src/node_modules/lodash/chain/plant.js similarity index 100% rename from node_modules/lodash/chain/plant.js rename to src/node_modules/lodash/chain/plant.js diff --git a/node_modules/lodash/chain/reverse.js b/src/node_modules/lodash/chain/reverse.js similarity index 100% rename from node_modules/lodash/chain/reverse.js rename to src/node_modules/lodash/chain/reverse.js diff --git a/node_modules/lodash/chain/run.js b/src/node_modules/lodash/chain/run.js similarity index 100% rename from node_modules/lodash/chain/run.js rename to src/node_modules/lodash/chain/run.js diff --git a/node_modules/lodash/chain/tap.js b/src/node_modules/lodash/chain/tap.js similarity index 100% rename from node_modules/lodash/chain/tap.js rename to src/node_modules/lodash/chain/tap.js diff --git a/node_modules/lodash/chain/thru.js b/src/node_modules/lodash/chain/thru.js similarity index 100% rename from node_modules/lodash/chain/thru.js rename to src/node_modules/lodash/chain/thru.js diff --git a/node_modules/lodash/chain/toJSON.js b/src/node_modules/lodash/chain/toJSON.js similarity index 100% rename from node_modules/lodash/chain/toJSON.js rename to src/node_modules/lodash/chain/toJSON.js diff --git a/node_modules/lodash/chain/toString.js b/src/node_modules/lodash/chain/toString.js similarity index 100% rename from node_modules/lodash/chain/toString.js rename to src/node_modules/lodash/chain/toString.js diff --git a/node_modules/lodash/chain/value.js b/src/node_modules/lodash/chain/value.js similarity index 100% rename from node_modules/lodash/chain/value.js rename to src/node_modules/lodash/chain/value.js diff --git a/node_modules/lodash/chain/valueOf.js b/src/node_modules/lodash/chain/valueOf.js similarity index 100% rename from node_modules/lodash/chain/valueOf.js rename to src/node_modules/lodash/chain/valueOf.js diff --git a/node_modules/lodash/chain/wrapperChain.js b/src/node_modules/lodash/chain/wrapperChain.js similarity index 100% rename from node_modules/lodash/chain/wrapperChain.js rename to src/node_modules/lodash/chain/wrapperChain.js diff --git a/node_modules/lodash/chain/wrapperCommit.js b/src/node_modules/lodash/chain/wrapperCommit.js similarity index 100% rename from node_modules/lodash/chain/wrapperCommit.js rename to src/node_modules/lodash/chain/wrapperCommit.js diff --git a/node_modules/lodash/chain/wrapperConcat.js b/src/node_modules/lodash/chain/wrapperConcat.js similarity index 100% rename from node_modules/lodash/chain/wrapperConcat.js rename to src/node_modules/lodash/chain/wrapperConcat.js diff --git a/node_modules/lodash/chain/wrapperPlant.js b/src/node_modules/lodash/chain/wrapperPlant.js similarity index 100% rename from node_modules/lodash/chain/wrapperPlant.js rename to src/node_modules/lodash/chain/wrapperPlant.js diff --git a/node_modules/lodash/chain/wrapperReverse.js b/src/node_modules/lodash/chain/wrapperReverse.js similarity index 100% rename from node_modules/lodash/chain/wrapperReverse.js rename to src/node_modules/lodash/chain/wrapperReverse.js diff --git a/node_modules/lodash/chain/wrapperToString.js b/src/node_modules/lodash/chain/wrapperToString.js similarity index 100% rename from node_modules/lodash/chain/wrapperToString.js rename to src/node_modules/lodash/chain/wrapperToString.js diff --git a/node_modules/lodash/chain/wrapperValue.js b/src/node_modules/lodash/chain/wrapperValue.js similarity index 100% rename from node_modules/lodash/chain/wrapperValue.js rename to src/node_modules/lodash/chain/wrapperValue.js diff --git a/node_modules/lodash/collection.js b/src/node_modules/lodash/collection.js similarity index 100% rename from node_modules/lodash/collection.js rename to src/node_modules/lodash/collection.js diff --git a/node_modules/lodash/collection/all.js b/src/node_modules/lodash/collection/all.js similarity index 100% rename from node_modules/lodash/collection/all.js rename to src/node_modules/lodash/collection/all.js diff --git a/node_modules/lodash/collection/any.js b/src/node_modules/lodash/collection/any.js similarity index 100% rename from node_modules/lodash/collection/any.js rename to src/node_modules/lodash/collection/any.js diff --git a/node_modules/lodash/collection/at.js b/src/node_modules/lodash/collection/at.js similarity index 100% rename from node_modules/lodash/collection/at.js rename to src/node_modules/lodash/collection/at.js diff --git a/node_modules/lodash/collection/collect.js b/src/node_modules/lodash/collection/collect.js similarity index 100% rename from node_modules/lodash/collection/collect.js rename to src/node_modules/lodash/collection/collect.js diff --git a/node_modules/lodash/collection/contains.js b/src/node_modules/lodash/collection/contains.js similarity index 100% rename from node_modules/lodash/collection/contains.js rename to src/node_modules/lodash/collection/contains.js diff --git a/node_modules/lodash/collection/countBy.js b/src/node_modules/lodash/collection/countBy.js similarity index 100% rename from node_modules/lodash/collection/countBy.js rename to src/node_modules/lodash/collection/countBy.js diff --git a/node_modules/lodash/collection/detect.js b/src/node_modules/lodash/collection/detect.js similarity index 100% rename from node_modules/lodash/collection/detect.js rename to src/node_modules/lodash/collection/detect.js diff --git a/node_modules/lodash/collection/each.js b/src/node_modules/lodash/collection/each.js similarity index 100% rename from node_modules/lodash/collection/each.js rename to src/node_modules/lodash/collection/each.js diff --git a/node_modules/lodash/collection/eachRight.js b/src/node_modules/lodash/collection/eachRight.js similarity index 100% rename from node_modules/lodash/collection/eachRight.js rename to src/node_modules/lodash/collection/eachRight.js diff --git a/node_modules/lodash/collection/every.js b/src/node_modules/lodash/collection/every.js similarity index 100% rename from node_modules/lodash/collection/every.js rename to src/node_modules/lodash/collection/every.js diff --git a/node_modules/lodash/collection/filter.js b/src/node_modules/lodash/collection/filter.js similarity index 100% rename from node_modules/lodash/collection/filter.js rename to src/node_modules/lodash/collection/filter.js diff --git a/node_modules/lodash/collection/find.js b/src/node_modules/lodash/collection/find.js similarity index 100% rename from node_modules/lodash/collection/find.js rename to src/node_modules/lodash/collection/find.js diff --git a/node_modules/lodash/collection/findLast.js b/src/node_modules/lodash/collection/findLast.js similarity index 100% rename from node_modules/lodash/collection/findLast.js rename to src/node_modules/lodash/collection/findLast.js diff --git a/node_modules/lodash/collection/findWhere.js b/src/node_modules/lodash/collection/findWhere.js similarity index 100% rename from node_modules/lodash/collection/findWhere.js rename to src/node_modules/lodash/collection/findWhere.js diff --git a/node_modules/lodash/collection/foldl.js b/src/node_modules/lodash/collection/foldl.js similarity index 100% rename from node_modules/lodash/collection/foldl.js rename to src/node_modules/lodash/collection/foldl.js diff --git a/node_modules/lodash/collection/foldr.js b/src/node_modules/lodash/collection/foldr.js similarity index 100% rename from node_modules/lodash/collection/foldr.js rename to src/node_modules/lodash/collection/foldr.js diff --git a/node_modules/lodash/collection/forEach.js b/src/node_modules/lodash/collection/forEach.js similarity index 100% rename from node_modules/lodash/collection/forEach.js rename to src/node_modules/lodash/collection/forEach.js diff --git a/node_modules/lodash/collection/forEachRight.js b/src/node_modules/lodash/collection/forEachRight.js similarity index 100% rename from node_modules/lodash/collection/forEachRight.js rename to src/node_modules/lodash/collection/forEachRight.js diff --git a/node_modules/lodash/collection/groupBy.js b/src/node_modules/lodash/collection/groupBy.js similarity index 100% rename from node_modules/lodash/collection/groupBy.js rename to src/node_modules/lodash/collection/groupBy.js diff --git a/node_modules/lodash/collection/include.js b/src/node_modules/lodash/collection/include.js similarity index 100% rename from node_modules/lodash/collection/include.js rename to src/node_modules/lodash/collection/include.js diff --git a/node_modules/lodash/collection/includes.js b/src/node_modules/lodash/collection/includes.js similarity index 100% rename from node_modules/lodash/collection/includes.js rename to src/node_modules/lodash/collection/includes.js diff --git a/node_modules/lodash/collection/indexBy.js b/src/node_modules/lodash/collection/indexBy.js similarity index 100% rename from node_modules/lodash/collection/indexBy.js rename to src/node_modules/lodash/collection/indexBy.js diff --git a/node_modules/lodash/collection/inject.js b/src/node_modules/lodash/collection/inject.js similarity index 100% rename from node_modules/lodash/collection/inject.js rename to src/node_modules/lodash/collection/inject.js diff --git a/node_modules/lodash/collection/invoke.js b/src/node_modules/lodash/collection/invoke.js similarity index 100% rename from node_modules/lodash/collection/invoke.js rename to src/node_modules/lodash/collection/invoke.js diff --git a/node_modules/lodash/collection/map.js b/src/node_modules/lodash/collection/map.js similarity index 100% rename from node_modules/lodash/collection/map.js rename to src/node_modules/lodash/collection/map.js diff --git a/node_modules/lodash/collection/max.js b/src/node_modules/lodash/collection/max.js similarity index 100% rename from node_modules/lodash/collection/max.js rename to src/node_modules/lodash/collection/max.js diff --git a/node_modules/lodash/collection/min.js b/src/node_modules/lodash/collection/min.js similarity index 100% rename from node_modules/lodash/collection/min.js rename to src/node_modules/lodash/collection/min.js diff --git a/node_modules/lodash/collection/partition.js b/src/node_modules/lodash/collection/partition.js similarity index 100% rename from node_modules/lodash/collection/partition.js rename to src/node_modules/lodash/collection/partition.js diff --git a/node_modules/lodash/collection/pluck.js b/src/node_modules/lodash/collection/pluck.js similarity index 100% rename from node_modules/lodash/collection/pluck.js rename to src/node_modules/lodash/collection/pluck.js diff --git a/node_modules/lodash/collection/reduce.js b/src/node_modules/lodash/collection/reduce.js similarity index 100% rename from node_modules/lodash/collection/reduce.js rename to src/node_modules/lodash/collection/reduce.js diff --git a/node_modules/lodash/collection/reduceRight.js b/src/node_modules/lodash/collection/reduceRight.js similarity index 100% rename from node_modules/lodash/collection/reduceRight.js rename to src/node_modules/lodash/collection/reduceRight.js diff --git a/node_modules/lodash/collection/reject.js b/src/node_modules/lodash/collection/reject.js similarity index 100% rename from node_modules/lodash/collection/reject.js rename to src/node_modules/lodash/collection/reject.js diff --git a/node_modules/lodash/collection/sample.js b/src/node_modules/lodash/collection/sample.js similarity index 100% rename from node_modules/lodash/collection/sample.js rename to src/node_modules/lodash/collection/sample.js diff --git a/node_modules/lodash/collection/select.js b/src/node_modules/lodash/collection/select.js similarity index 100% rename from node_modules/lodash/collection/select.js rename to src/node_modules/lodash/collection/select.js diff --git a/node_modules/lodash/collection/shuffle.js b/src/node_modules/lodash/collection/shuffle.js similarity index 100% rename from node_modules/lodash/collection/shuffle.js rename to src/node_modules/lodash/collection/shuffle.js diff --git a/node_modules/lodash/collection/size.js b/src/node_modules/lodash/collection/size.js similarity index 100% rename from node_modules/lodash/collection/size.js rename to src/node_modules/lodash/collection/size.js diff --git a/node_modules/lodash/collection/some.js b/src/node_modules/lodash/collection/some.js similarity index 100% rename from node_modules/lodash/collection/some.js rename to src/node_modules/lodash/collection/some.js diff --git a/node_modules/lodash/collection/sortBy.js b/src/node_modules/lodash/collection/sortBy.js similarity index 100% rename from node_modules/lodash/collection/sortBy.js rename to src/node_modules/lodash/collection/sortBy.js diff --git a/node_modules/lodash/collection/sortByAll.js b/src/node_modules/lodash/collection/sortByAll.js similarity index 100% rename from node_modules/lodash/collection/sortByAll.js rename to src/node_modules/lodash/collection/sortByAll.js diff --git a/node_modules/lodash/collection/sortByOrder.js b/src/node_modules/lodash/collection/sortByOrder.js similarity index 100% rename from node_modules/lodash/collection/sortByOrder.js rename to src/node_modules/lodash/collection/sortByOrder.js diff --git a/node_modules/lodash/collection/sum.js b/src/node_modules/lodash/collection/sum.js similarity index 100% rename from node_modules/lodash/collection/sum.js rename to src/node_modules/lodash/collection/sum.js diff --git a/node_modules/lodash/collection/where.js b/src/node_modules/lodash/collection/where.js similarity index 100% rename from node_modules/lodash/collection/where.js rename to src/node_modules/lodash/collection/where.js diff --git a/node_modules/lodash/date.js b/src/node_modules/lodash/date.js similarity index 100% rename from node_modules/lodash/date.js rename to src/node_modules/lodash/date.js diff --git a/node_modules/lodash/date/now.js b/src/node_modules/lodash/date/now.js similarity index 100% rename from node_modules/lodash/date/now.js rename to src/node_modules/lodash/date/now.js diff --git a/node_modules/lodash/function.js b/src/node_modules/lodash/function.js similarity index 100% rename from node_modules/lodash/function.js rename to src/node_modules/lodash/function.js diff --git a/node_modules/lodash/function/after.js b/src/node_modules/lodash/function/after.js similarity index 100% rename from node_modules/lodash/function/after.js rename to src/node_modules/lodash/function/after.js diff --git a/node_modules/lodash/function/ary.js b/src/node_modules/lodash/function/ary.js similarity index 100% rename from node_modules/lodash/function/ary.js rename to src/node_modules/lodash/function/ary.js diff --git a/node_modules/lodash/function/backflow.js b/src/node_modules/lodash/function/backflow.js similarity index 100% rename from node_modules/lodash/function/backflow.js rename to src/node_modules/lodash/function/backflow.js diff --git a/node_modules/lodash/function/before.js b/src/node_modules/lodash/function/before.js similarity index 100% rename from node_modules/lodash/function/before.js rename to src/node_modules/lodash/function/before.js diff --git a/node_modules/lodash/function/bind.js b/src/node_modules/lodash/function/bind.js similarity index 100% rename from node_modules/lodash/function/bind.js rename to src/node_modules/lodash/function/bind.js diff --git a/node_modules/lodash/function/bindAll.js b/src/node_modules/lodash/function/bindAll.js similarity index 100% rename from node_modules/lodash/function/bindAll.js rename to src/node_modules/lodash/function/bindAll.js diff --git a/node_modules/lodash/function/bindKey.js b/src/node_modules/lodash/function/bindKey.js similarity index 100% rename from node_modules/lodash/function/bindKey.js rename to src/node_modules/lodash/function/bindKey.js diff --git a/node_modules/lodash/function/compose.js b/src/node_modules/lodash/function/compose.js similarity index 100% rename from node_modules/lodash/function/compose.js rename to src/node_modules/lodash/function/compose.js diff --git a/node_modules/lodash/function/curry.js b/src/node_modules/lodash/function/curry.js similarity index 100% rename from node_modules/lodash/function/curry.js rename to src/node_modules/lodash/function/curry.js diff --git a/node_modules/lodash/function/curryRight.js b/src/node_modules/lodash/function/curryRight.js similarity index 100% rename from node_modules/lodash/function/curryRight.js rename to src/node_modules/lodash/function/curryRight.js diff --git a/node_modules/lodash/function/debounce.js b/src/node_modules/lodash/function/debounce.js similarity index 100% rename from node_modules/lodash/function/debounce.js rename to src/node_modules/lodash/function/debounce.js diff --git a/node_modules/lodash/function/defer.js b/src/node_modules/lodash/function/defer.js similarity index 100% rename from node_modules/lodash/function/defer.js rename to src/node_modules/lodash/function/defer.js diff --git a/node_modules/lodash/function/delay.js b/src/node_modules/lodash/function/delay.js similarity index 100% rename from node_modules/lodash/function/delay.js rename to src/node_modules/lodash/function/delay.js diff --git a/node_modules/lodash/function/flow.js b/src/node_modules/lodash/function/flow.js similarity index 100% rename from node_modules/lodash/function/flow.js rename to src/node_modules/lodash/function/flow.js diff --git a/node_modules/lodash/function/flowRight.js b/src/node_modules/lodash/function/flowRight.js similarity index 100% rename from node_modules/lodash/function/flowRight.js rename to src/node_modules/lodash/function/flowRight.js diff --git a/node_modules/lodash/function/memoize.js b/src/node_modules/lodash/function/memoize.js similarity index 100% rename from node_modules/lodash/function/memoize.js rename to src/node_modules/lodash/function/memoize.js diff --git a/node_modules/lodash/function/modArgs.js b/src/node_modules/lodash/function/modArgs.js similarity index 100% rename from node_modules/lodash/function/modArgs.js rename to src/node_modules/lodash/function/modArgs.js diff --git a/node_modules/lodash/function/negate.js b/src/node_modules/lodash/function/negate.js similarity index 100% rename from node_modules/lodash/function/negate.js rename to src/node_modules/lodash/function/negate.js diff --git a/node_modules/lodash/function/once.js b/src/node_modules/lodash/function/once.js similarity index 100% rename from node_modules/lodash/function/once.js rename to src/node_modules/lodash/function/once.js diff --git a/node_modules/lodash/function/partial.js b/src/node_modules/lodash/function/partial.js similarity index 100% rename from node_modules/lodash/function/partial.js rename to src/node_modules/lodash/function/partial.js diff --git a/node_modules/lodash/function/partialRight.js b/src/node_modules/lodash/function/partialRight.js similarity index 100% rename from node_modules/lodash/function/partialRight.js rename to src/node_modules/lodash/function/partialRight.js diff --git a/node_modules/lodash/function/rearg.js b/src/node_modules/lodash/function/rearg.js similarity index 100% rename from node_modules/lodash/function/rearg.js rename to src/node_modules/lodash/function/rearg.js diff --git a/node_modules/lodash/function/restParam.js b/src/node_modules/lodash/function/restParam.js similarity index 100% rename from node_modules/lodash/function/restParam.js rename to src/node_modules/lodash/function/restParam.js diff --git a/node_modules/lodash/function/spread.js b/src/node_modules/lodash/function/spread.js similarity index 100% rename from node_modules/lodash/function/spread.js rename to src/node_modules/lodash/function/spread.js diff --git a/node_modules/lodash/function/throttle.js b/src/node_modules/lodash/function/throttle.js similarity index 100% rename from node_modules/lodash/function/throttle.js rename to src/node_modules/lodash/function/throttle.js diff --git a/node_modules/lodash/function/wrap.js b/src/node_modules/lodash/function/wrap.js similarity index 100% rename from node_modules/lodash/function/wrap.js rename to src/node_modules/lodash/function/wrap.js diff --git a/node_modules/lodash/index.js b/src/node_modules/lodash/index.js similarity index 100% rename from node_modules/lodash/index.js rename to src/node_modules/lodash/index.js diff --git a/node_modules/lodash/internal/LazyWrapper.js b/src/node_modules/lodash/internal/LazyWrapper.js similarity index 100% rename from node_modules/lodash/internal/LazyWrapper.js rename to src/node_modules/lodash/internal/LazyWrapper.js diff --git a/node_modules/lodash/internal/LodashWrapper.js b/src/node_modules/lodash/internal/LodashWrapper.js similarity index 100% rename from node_modules/lodash/internal/LodashWrapper.js rename to src/node_modules/lodash/internal/LodashWrapper.js diff --git a/node_modules/lodash/internal/MapCache.js b/src/node_modules/lodash/internal/MapCache.js similarity index 100% rename from node_modules/lodash/internal/MapCache.js rename to src/node_modules/lodash/internal/MapCache.js diff --git a/node_modules/lodash/internal/SetCache.js b/src/node_modules/lodash/internal/SetCache.js similarity index 100% rename from node_modules/lodash/internal/SetCache.js rename to src/node_modules/lodash/internal/SetCache.js diff --git a/node_modules/lodash/internal/arrayConcat.js b/src/node_modules/lodash/internal/arrayConcat.js similarity index 100% rename from node_modules/lodash/internal/arrayConcat.js rename to src/node_modules/lodash/internal/arrayConcat.js diff --git a/node_modules/lodash/internal/arrayCopy.js b/src/node_modules/lodash/internal/arrayCopy.js similarity index 100% rename from node_modules/lodash/internal/arrayCopy.js rename to src/node_modules/lodash/internal/arrayCopy.js diff --git a/node_modules/lodash/internal/arrayEach.js b/src/node_modules/lodash/internal/arrayEach.js similarity index 100% rename from node_modules/lodash/internal/arrayEach.js rename to src/node_modules/lodash/internal/arrayEach.js diff --git a/node_modules/lodash/internal/arrayEachRight.js b/src/node_modules/lodash/internal/arrayEachRight.js similarity index 100% rename from node_modules/lodash/internal/arrayEachRight.js rename to src/node_modules/lodash/internal/arrayEachRight.js diff --git a/node_modules/lodash/internal/arrayEvery.js b/src/node_modules/lodash/internal/arrayEvery.js similarity index 100% rename from node_modules/lodash/internal/arrayEvery.js rename to src/node_modules/lodash/internal/arrayEvery.js diff --git a/node_modules/lodash/internal/arrayExtremum.js b/src/node_modules/lodash/internal/arrayExtremum.js similarity index 100% rename from node_modules/lodash/internal/arrayExtremum.js rename to src/node_modules/lodash/internal/arrayExtremum.js diff --git a/node_modules/lodash/internal/arrayFilter.js b/src/node_modules/lodash/internal/arrayFilter.js similarity index 100% rename from node_modules/lodash/internal/arrayFilter.js rename to src/node_modules/lodash/internal/arrayFilter.js diff --git a/node_modules/lodash/internal/arrayMap.js b/src/node_modules/lodash/internal/arrayMap.js similarity index 100% rename from node_modules/lodash/internal/arrayMap.js rename to src/node_modules/lodash/internal/arrayMap.js diff --git a/node_modules/lodash/internal/arrayPush.js b/src/node_modules/lodash/internal/arrayPush.js similarity index 100% rename from node_modules/lodash/internal/arrayPush.js rename to src/node_modules/lodash/internal/arrayPush.js diff --git a/node_modules/lodash/internal/arrayReduce.js b/src/node_modules/lodash/internal/arrayReduce.js similarity index 100% rename from node_modules/lodash/internal/arrayReduce.js rename to src/node_modules/lodash/internal/arrayReduce.js diff --git a/node_modules/lodash/internal/arrayReduceRight.js b/src/node_modules/lodash/internal/arrayReduceRight.js similarity index 100% rename from node_modules/lodash/internal/arrayReduceRight.js rename to src/node_modules/lodash/internal/arrayReduceRight.js diff --git a/node_modules/lodash/internal/arraySome.js b/src/node_modules/lodash/internal/arraySome.js similarity index 100% rename from node_modules/lodash/internal/arraySome.js rename to src/node_modules/lodash/internal/arraySome.js diff --git a/node_modules/lodash/internal/arraySum.js b/src/node_modules/lodash/internal/arraySum.js similarity index 100% rename from node_modules/lodash/internal/arraySum.js rename to src/node_modules/lodash/internal/arraySum.js diff --git a/node_modules/lodash/internal/assignDefaults.js b/src/node_modules/lodash/internal/assignDefaults.js similarity index 100% rename from node_modules/lodash/internal/assignDefaults.js rename to src/node_modules/lodash/internal/assignDefaults.js diff --git a/node_modules/lodash/internal/assignOwnDefaults.js b/src/node_modules/lodash/internal/assignOwnDefaults.js similarity index 100% rename from node_modules/lodash/internal/assignOwnDefaults.js rename to src/node_modules/lodash/internal/assignOwnDefaults.js diff --git a/node_modules/lodash/internal/assignWith.js b/src/node_modules/lodash/internal/assignWith.js similarity index 100% rename from node_modules/lodash/internal/assignWith.js rename to src/node_modules/lodash/internal/assignWith.js diff --git a/node_modules/lodash/internal/baseAssign.js b/src/node_modules/lodash/internal/baseAssign.js similarity index 100% rename from node_modules/lodash/internal/baseAssign.js rename to src/node_modules/lodash/internal/baseAssign.js diff --git a/node_modules/lodash/internal/baseAt.js b/src/node_modules/lodash/internal/baseAt.js similarity index 100% rename from node_modules/lodash/internal/baseAt.js rename to src/node_modules/lodash/internal/baseAt.js diff --git a/node_modules/lodash/internal/baseCallback.js b/src/node_modules/lodash/internal/baseCallback.js similarity index 100% rename from node_modules/lodash/internal/baseCallback.js rename to src/node_modules/lodash/internal/baseCallback.js diff --git a/node_modules/lodash/internal/baseClone.js b/src/node_modules/lodash/internal/baseClone.js similarity index 100% rename from node_modules/lodash/internal/baseClone.js rename to src/node_modules/lodash/internal/baseClone.js diff --git a/node_modules/lodash/internal/baseCompareAscending.js b/src/node_modules/lodash/internal/baseCompareAscending.js similarity index 100% rename from node_modules/lodash/internal/baseCompareAscending.js rename to src/node_modules/lodash/internal/baseCompareAscending.js diff --git a/node_modules/lodash/internal/baseCopy.js b/src/node_modules/lodash/internal/baseCopy.js similarity index 100% rename from node_modules/lodash/internal/baseCopy.js rename to src/node_modules/lodash/internal/baseCopy.js diff --git a/node_modules/lodash/internal/baseCreate.js b/src/node_modules/lodash/internal/baseCreate.js similarity index 100% rename from node_modules/lodash/internal/baseCreate.js rename to src/node_modules/lodash/internal/baseCreate.js diff --git a/node_modules/lodash/internal/baseDelay.js b/src/node_modules/lodash/internal/baseDelay.js similarity index 100% rename from node_modules/lodash/internal/baseDelay.js rename to src/node_modules/lodash/internal/baseDelay.js diff --git a/node_modules/lodash/internal/baseDifference.js b/src/node_modules/lodash/internal/baseDifference.js similarity index 100% rename from node_modules/lodash/internal/baseDifference.js rename to src/node_modules/lodash/internal/baseDifference.js diff --git a/node_modules/lodash/internal/baseEach.js b/src/node_modules/lodash/internal/baseEach.js similarity index 100% rename from node_modules/lodash/internal/baseEach.js rename to src/node_modules/lodash/internal/baseEach.js diff --git a/node_modules/lodash/internal/baseEachRight.js b/src/node_modules/lodash/internal/baseEachRight.js similarity index 100% rename from node_modules/lodash/internal/baseEachRight.js rename to src/node_modules/lodash/internal/baseEachRight.js diff --git a/node_modules/lodash/internal/baseEvery.js b/src/node_modules/lodash/internal/baseEvery.js similarity index 100% rename from node_modules/lodash/internal/baseEvery.js rename to src/node_modules/lodash/internal/baseEvery.js diff --git a/node_modules/lodash/internal/baseExtremum.js b/src/node_modules/lodash/internal/baseExtremum.js similarity index 100% rename from node_modules/lodash/internal/baseExtremum.js rename to src/node_modules/lodash/internal/baseExtremum.js diff --git a/node_modules/lodash/internal/baseFill.js b/src/node_modules/lodash/internal/baseFill.js similarity index 100% rename from node_modules/lodash/internal/baseFill.js rename to src/node_modules/lodash/internal/baseFill.js diff --git a/node_modules/lodash/internal/baseFilter.js b/src/node_modules/lodash/internal/baseFilter.js similarity index 100% rename from node_modules/lodash/internal/baseFilter.js rename to src/node_modules/lodash/internal/baseFilter.js diff --git a/node_modules/lodash/internal/baseFind.js b/src/node_modules/lodash/internal/baseFind.js similarity index 100% rename from node_modules/lodash/internal/baseFind.js rename to src/node_modules/lodash/internal/baseFind.js diff --git a/node_modules/lodash/internal/baseFindIndex.js b/src/node_modules/lodash/internal/baseFindIndex.js similarity index 100% rename from node_modules/lodash/internal/baseFindIndex.js rename to src/node_modules/lodash/internal/baseFindIndex.js diff --git a/node_modules/lodash/internal/baseFlatten.js b/src/node_modules/lodash/internal/baseFlatten.js similarity index 100% rename from node_modules/lodash/internal/baseFlatten.js rename to src/node_modules/lodash/internal/baseFlatten.js diff --git a/node_modules/lodash/internal/baseFor.js b/src/node_modules/lodash/internal/baseFor.js similarity index 100% rename from node_modules/lodash/internal/baseFor.js rename to src/node_modules/lodash/internal/baseFor.js diff --git a/node_modules/lodash/internal/baseForIn.js b/src/node_modules/lodash/internal/baseForIn.js similarity index 100% rename from node_modules/lodash/internal/baseForIn.js rename to src/node_modules/lodash/internal/baseForIn.js diff --git a/node_modules/lodash/internal/baseForOwn.js b/src/node_modules/lodash/internal/baseForOwn.js similarity index 100% rename from node_modules/lodash/internal/baseForOwn.js rename to src/node_modules/lodash/internal/baseForOwn.js diff --git a/node_modules/lodash/internal/baseForOwnRight.js b/src/node_modules/lodash/internal/baseForOwnRight.js similarity index 100% rename from node_modules/lodash/internal/baseForOwnRight.js rename to src/node_modules/lodash/internal/baseForOwnRight.js diff --git a/node_modules/lodash/internal/baseForRight.js b/src/node_modules/lodash/internal/baseForRight.js similarity index 100% rename from node_modules/lodash/internal/baseForRight.js rename to src/node_modules/lodash/internal/baseForRight.js diff --git a/node_modules/lodash/internal/baseFunctions.js b/src/node_modules/lodash/internal/baseFunctions.js similarity index 100% rename from node_modules/lodash/internal/baseFunctions.js rename to src/node_modules/lodash/internal/baseFunctions.js diff --git a/node_modules/lodash/internal/baseGet.js b/src/node_modules/lodash/internal/baseGet.js similarity index 100% rename from node_modules/lodash/internal/baseGet.js rename to src/node_modules/lodash/internal/baseGet.js diff --git a/node_modules/lodash/internal/baseIndexOf.js b/src/node_modules/lodash/internal/baseIndexOf.js similarity index 100% rename from node_modules/lodash/internal/baseIndexOf.js rename to src/node_modules/lodash/internal/baseIndexOf.js diff --git a/node_modules/lodash/internal/baseIsEqual.js b/src/node_modules/lodash/internal/baseIsEqual.js similarity index 100% rename from node_modules/lodash/internal/baseIsEqual.js rename to src/node_modules/lodash/internal/baseIsEqual.js diff --git a/node_modules/lodash/internal/baseIsEqualDeep.js b/src/node_modules/lodash/internal/baseIsEqualDeep.js similarity index 100% rename from node_modules/lodash/internal/baseIsEqualDeep.js rename to src/node_modules/lodash/internal/baseIsEqualDeep.js diff --git a/node_modules/lodash/internal/baseIsFunction.js b/src/node_modules/lodash/internal/baseIsFunction.js similarity index 100% rename from node_modules/lodash/internal/baseIsFunction.js rename to src/node_modules/lodash/internal/baseIsFunction.js diff --git a/node_modules/lodash/internal/baseIsMatch.js b/src/node_modules/lodash/internal/baseIsMatch.js similarity index 100% rename from node_modules/lodash/internal/baseIsMatch.js rename to src/node_modules/lodash/internal/baseIsMatch.js diff --git a/node_modules/lodash/internal/baseLodash.js b/src/node_modules/lodash/internal/baseLodash.js similarity index 100% rename from node_modules/lodash/internal/baseLodash.js rename to src/node_modules/lodash/internal/baseLodash.js diff --git a/node_modules/lodash/internal/baseMap.js b/src/node_modules/lodash/internal/baseMap.js similarity index 100% rename from node_modules/lodash/internal/baseMap.js rename to src/node_modules/lodash/internal/baseMap.js diff --git a/node_modules/lodash/internal/baseMatches.js b/src/node_modules/lodash/internal/baseMatches.js similarity index 100% rename from node_modules/lodash/internal/baseMatches.js rename to src/node_modules/lodash/internal/baseMatches.js diff --git a/node_modules/lodash/internal/baseMatchesProperty.js b/src/node_modules/lodash/internal/baseMatchesProperty.js similarity index 100% rename from node_modules/lodash/internal/baseMatchesProperty.js rename to src/node_modules/lodash/internal/baseMatchesProperty.js diff --git a/node_modules/lodash/internal/baseMerge.js b/src/node_modules/lodash/internal/baseMerge.js similarity index 100% rename from node_modules/lodash/internal/baseMerge.js rename to src/node_modules/lodash/internal/baseMerge.js diff --git a/node_modules/lodash/internal/baseMergeDeep.js b/src/node_modules/lodash/internal/baseMergeDeep.js similarity index 100% rename from node_modules/lodash/internal/baseMergeDeep.js rename to src/node_modules/lodash/internal/baseMergeDeep.js diff --git a/node_modules/lodash/internal/baseProperty.js b/src/node_modules/lodash/internal/baseProperty.js similarity index 100% rename from node_modules/lodash/internal/baseProperty.js rename to src/node_modules/lodash/internal/baseProperty.js diff --git a/node_modules/lodash/internal/basePropertyDeep.js b/src/node_modules/lodash/internal/basePropertyDeep.js similarity index 100% rename from node_modules/lodash/internal/basePropertyDeep.js rename to src/node_modules/lodash/internal/basePropertyDeep.js diff --git a/node_modules/lodash/internal/basePullAt.js b/src/node_modules/lodash/internal/basePullAt.js similarity index 100% rename from node_modules/lodash/internal/basePullAt.js rename to src/node_modules/lodash/internal/basePullAt.js diff --git a/node_modules/lodash/internal/baseRandom.js b/src/node_modules/lodash/internal/baseRandom.js similarity index 100% rename from node_modules/lodash/internal/baseRandom.js rename to src/node_modules/lodash/internal/baseRandom.js diff --git a/node_modules/lodash/internal/baseReduce.js b/src/node_modules/lodash/internal/baseReduce.js similarity index 100% rename from node_modules/lodash/internal/baseReduce.js rename to src/node_modules/lodash/internal/baseReduce.js diff --git a/node_modules/lodash/internal/baseSetData.js b/src/node_modules/lodash/internal/baseSetData.js similarity index 100% rename from node_modules/lodash/internal/baseSetData.js rename to src/node_modules/lodash/internal/baseSetData.js diff --git a/node_modules/lodash/internal/baseSlice.js b/src/node_modules/lodash/internal/baseSlice.js similarity index 100% rename from node_modules/lodash/internal/baseSlice.js rename to src/node_modules/lodash/internal/baseSlice.js diff --git a/node_modules/lodash/internal/baseSome.js b/src/node_modules/lodash/internal/baseSome.js similarity index 100% rename from node_modules/lodash/internal/baseSome.js rename to src/node_modules/lodash/internal/baseSome.js diff --git a/node_modules/lodash/internal/baseSortBy.js b/src/node_modules/lodash/internal/baseSortBy.js similarity index 100% rename from node_modules/lodash/internal/baseSortBy.js rename to src/node_modules/lodash/internal/baseSortBy.js diff --git a/node_modules/lodash/internal/baseSortByOrder.js b/src/node_modules/lodash/internal/baseSortByOrder.js similarity index 100% rename from node_modules/lodash/internal/baseSortByOrder.js rename to src/node_modules/lodash/internal/baseSortByOrder.js diff --git a/node_modules/lodash/internal/baseSum.js b/src/node_modules/lodash/internal/baseSum.js similarity index 100% rename from node_modules/lodash/internal/baseSum.js rename to src/node_modules/lodash/internal/baseSum.js diff --git a/node_modules/lodash/internal/baseToString.js b/src/node_modules/lodash/internal/baseToString.js similarity index 100% rename from node_modules/lodash/internal/baseToString.js rename to src/node_modules/lodash/internal/baseToString.js diff --git a/node_modules/lodash/internal/baseUniq.js b/src/node_modules/lodash/internal/baseUniq.js similarity index 100% rename from node_modules/lodash/internal/baseUniq.js rename to src/node_modules/lodash/internal/baseUniq.js diff --git a/node_modules/lodash/internal/baseValues.js b/src/node_modules/lodash/internal/baseValues.js similarity index 100% rename from node_modules/lodash/internal/baseValues.js rename to src/node_modules/lodash/internal/baseValues.js diff --git a/node_modules/lodash/internal/baseWhile.js b/src/node_modules/lodash/internal/baseWhile.js similarity index 100% rename from node_modules/lodash/internal/baseWhile.js rename to src/node_modules/lodash/internal/baseWhile.js diff --git a/node_modules/lodash/internal/baseWrapperValue.js b/src/node_modules/lodash/internal/baseWrapperValue.js similarity index 100% rename from node_modules/lodash/internal/baseWrapperValue.js rename to src/node_modules/lodash/internal/baseWrapperValue.js diff --git a/node_modules/lodash/internal/binaryIndex.js b/src/node_modules/lodash/internal/binaryIndex.js similarity index 100% rename from node_modules/lodash/internal/binaryIndex.js rename to src/node_modules/lodash/internal/binaryIndex.js diff --git a/node_modules/lodash/internal/binaryIndexBy.js b/src/node_modules/lodash/internal/binaryIndexBy.js similarity index 100% rename from node_modules/lodash/internal/binaryIndexBy.js rename to src/node_modules/lodash/internal/binaryIndexBy.js diff --git a/node_modules/lodash/internal/bindCallback.js b/src/node_modules/lodash/internal/bindCallback.js similarity index 100% rename from node_modules/lodash/internal/bindCallback.js rename to src/node_modules/lodash/internal/bindCallback.js diff --git a/node_modules/lodash/internal/bufferClone.js b/src/node_modules/lodash/internal/bufferClone.js similarity index 100% rename from node_modules/lodash/internal/bufferClone.js rename to src/node_modules/lodash/internal/bufferClone.js diff --git a/node_modules/lodash/internal/cacheIndexOf.js b/src/node_modules/lodash/internal/cacheIndexOf.js similarity index 100% rename from node_modules/lodash/internal/cacheIndexOf.js rename to src/node_modules/lodash/internal/cacheIndexOf.js diff --git a/node_modules/lodash/internal/cachePush.js b/src/node_modules/lodash/internal/cachePush.js similarity index 100% rename from node_modules/lodash/internal/cachePush.js rename to src/node_modules/lodash/internal/cachePush.js diff --git a/node_modules/lodash/internal/charsLeftIndex.js b/src/node_modules/lodash/internal/charsLeftIndex.js similarity index 100% rename from node_modules/lodash/internal/charsLeftIndex.js rename to src/node_modules/lodash/internal/charsLeftIndex.js diff --git a/node_modules/lodash/internal/charsRightIndex.js b/src/node_modules/lodash/internal/charsRightIndex.js similarity index 100% rename from node_modules/lodash/internal/charsRightIndex.js rename to src/node_modules/lodash/internal/charsRightIndex.js diff --git a/node_modules/lodash/internal/compareAscending.js b/src/node_modules/lodash/internal/compareAscending.js similarity index 100% rename from node_modules/lodash/internal/compareAscending.js rename to src/node_modules/lodash/internal/compareAscending.js diff --git a/node_modules/lodash/internal/compareMultiple.js b/src/node_modules/lodash/internal/compareMultiple.js similarity index 100% rename from node_modules/lodash/internal/compareMultiple.js rename to src/node_modules/lodash/internal/compareMultiple.js diff --git a/node_modules/lodash/internal/composeArgs.js b/src/node_modules/lodash/internal/composeArgs.js similarity index 100% rename from node_modules/lodash/internal/composeArgs.js rename to src/node_modules/lodash/internal/composeArgs.js diff --git a/node_modules/lodash/internal/composeArgsRight.js b/src/node_modules/lodash/internal/composeArgsRight.js similarity index 100% rename from node_modules/lodash/internal/composeArgsRight.js rename to src/node_modules/lodash/internal/composeArgsRight.js diff --git a/node_modules/lodash/internal/createAggregator.js b/src/node_modules/lodash/internal/createAggregator.js similarity index 100% rename from node_modules/lodash/internal/createAggregator.js rename to src/node_modules/lodash/internal/createAggregator.js diff --git a/node_modules/lodash/internal/createAssigner.js b/src/node_modules/lodash/internal/createAssigner.js similarity index 100% rename from node_modules/lodash/internal/createAssigner.js rename to src/node_modules/lodash/internal/createAssigner.js diff --git a/node_modules/lodash/internal/createBaseEach.js b/src/node_modules/lodash/internal/createBaseEach.js similarity index 100% rename from node_modules/lodash/internal/createBaseEach.js rename to src/node_modules/lodash/internal/createBaseEach.js diff --git a/node_modules/lodash/internal/createBaseFor.js b/src/node_modules/lodash/internal/createBaseFor.js similarity index 100% rename from node_modules/lodash/internal/createBaseFor.js rename to src/node_modules/lodash/internal/createBaseFor.js diff --git a/node_modules/lodash/internal/createBindWrapper.js b/src/node_modules/lodash/internal/createBindWrapper.js similarity index 100% rename from node_modules/lodash/internal/createBindWrapper.js rename to src/node_modules/lodash/internal/createBindWrapper.js diff --git a/node_modules/lodash/internal/createCache.js b/src/node_modules/lodash/internal/createCache.js similarity index 100% rename from node_modules/lodash/internal/createCache.js rename to src/node_modules/lodash/internal/createCache.js diff --git a/node_modules/lodash/internal/createCompounder.js b/src/node_modules/lodash/internal/createCompounder.js similarity index 100% rename from node_modules/lodash/internal/createCompounder.js rename to src/node_modules/lodash/internal/createCompounder.js diff --git a/node_modules/lodash/internal/createCtorWrapper.js b/src/node_modules/lodash/internal/createCtorWrapper.js similarity index 100% rename from node_modules/lodash/internal/createCtorWrapper.js rename to src/node_modules/lodash/internal/createCtorWrapper.js diff --git a/node_modules/lodash/internal/createCurry.js b/src/node_modules/lodash/internal/createCurry.js similarity index 100% rename from node_modules/lodash/internal/createCurry.js rename to src/node_modules/lodash/internal/createCurry.js diff --git a/node_modules/lodash/internal/createDefaults.js b/src/node_modules/lodash/internal/createDefaults.js similarity index 100% rename from node_modules/lodash/internal/createDefaults.js rename to src/node_modules/lodash/internal/createDefaults.js diff --git a/node_modules/lodash/internal/createExtremum.js b/src/node_modules/lodash/internal/createExtremum.js similarity index 100% rename from node_modules/lodash/internal/createExtremum.js rename to src/node_modules/lodash/internal/createExtremum.js diff --git a/node_modules/lodash/internal/createFind.js b/src/node_modules/lodash/internal/createFind.js similarity index 100% rename from node_modules/lodash/internal/createFind.js rename to src/node_modules/lodash/internal/createFind.js diff --git a/node_modules/lodash/internal/createFindIndex.js b/src/node_modules/lodash/internal/createFindIndex.js similarity index 100% rename from node_modules/lodash/internal/createFindIndex.js rename to src/node_modules/lodash/internal/createFindIndex.js diff --git a/node_modules/lodash/internal/createFindKey.js b/src/node_modules/lodash/internal/createFindKey.js similarity index 100% rename from node_modules/lodash/internal/createFindKey.js rename to src/node_modules/lodash/internal/createFindKey.js diff --git a/node_modules/lodash/internal/createFlow.js b/src/node_modules/lodash/internal/createFlow.js similarity index 100% rename from node_modules/lodash/internal/createFlow.js rename to src/node_modules/lodash/internal/createFlow.js diff --git a/node_modules/lodash/internal/createForEach.js b/src/node_modules/lodash/internal/createForEach.js similarity index 100% rename from node_modules/lodash/internal/createForEach.js rename to src/node_modules/lodash/internal/createForEach.js diff --git a/node_modules/lodash/internal/createForIn.js b/src/node_modules/lodash/internal/createForIn.js similarity index 100% rename from node_modules/lodash/internal/createForIn.js rename to src/node_modules/lodash/internal/createForIn.js diff --git a/node_modules/lodash/internal/createForOwn.js b/src/node_modules/lodash/internal/createForOwn.js similarity index 100% rename from node_modules/lodash/internal/createForOwn.js rename to src/node_modules/lodash/internal/createForOwn.js diff --git a/node_modules/lodash/internal/createHybridWrapper.js b/src/node_modules/lodash/internal/createHybridWrapper.js similarity index 100% rename from node_modules/lodash/internal/createHybridWrapper.js rename to src/node_modules/lodash/internal/createHybridWrapper.js diff --git a/node_modules/lodash/internal/createObjectMapper.js b/src/node_modules/lodash/internal/createObjectMapper.js similarity index 100% rename from node_modules/lodash/internal/createObjectMapper.js rename to src/node_modules/lodash/internal/createObjectMapper.js diff --git a/node_modules/lodash/internal/createPadDir.js b/src/node_modules/lodash/internal/createPadDir.js similarity index 100% rename from node_modules/lodash/internal/createPadDir.js rename to src/node_modules/lodash/internal/createPadDir.js diff --git a/node_modules/lodash/internal/createPadding.js b/src/node_modules/lodash/internal/createPadding.js similarity index 100% rename from node_modules/lodash/internal/createPadding.js rename to src/node_modules/lodash/internal/createPadding.js diff --git a/node_modules/lodash/internal/createPartial.js b/src/node_modules/lodash/internal/createPartial.js similarity index 100% rename from node_modules/lodash/internal/createPartial.js rename to src/node_modules/lodash/internal/createPartial.js diff --git a/node_modules/lodash/internal/createPartialWrapper.js b/src/node_modules/lodash/internal/createPartialWrapper.js similarity index 100% rename from node_modules/lodash/internal/createPartialWrapper.js rename to src/node_modules/lodash/internal/createPartialWrapper.js diff --git a/node_modules/lodash/internal/createReduce.js b/src/node_modules/lodash/internal/createReduce.js similarity index 100% rename from node_modules/lodash/internal/createReduce.js rename to src/node_modules/lodash/internal/createReduce.js diff --git a/node_modules/lodash/internal/createRound.js b/src/node_modules/lodash/internal/createRound.js similarity index 100% rename from node_modules/lodash/internal/createRound.js rename to src/node_modules/lodash/internal/createRound.js diff --git a/node_modules/lodash/internal/createSortedIndex.js b/src/node_modules/lodash/internal/createSortedIndex.js similarity index 100% rename from node_modules/lodash/internal/createSortedIndex.js rename to src/node_modules/lodash/internal/createSortedIndex.js diff --git a/node_modules/lodash/internal/createWrapper.js b/src/node_modules/lodash/internal/createWrapper.js similarity index 100% rename from node_modules/lodash/internal/createWrapper.js rename to src/node_modules/lodash/internal/createWrapper.js diff --git a/node_modules/lodash/internal/deburrLetter.js b/src/node_modules/lodash/internal/deburrLetter.js similarity index 100% rename from node_modules/lodash/internal/deburrLetter.js rename to src/node_modules/lodash/internal/deburrLetter.js diff --git a/node_modules/lodash/internal/equalArrays.js b/src/node_modules/lodash/internal/equalArrays.js similarity index 100% rename from node_modules/lodash/internal/equalArrays.js rename to src/node_modules/lodash/internal/equalArrays.js diff --git a/node_modules/lodash/internal/equalByTag.js b/src/node_modules/lodash/internal/equalByTag.js similarity index 100% rename from node_modules/lodash/internal/equalByTag.js rename to src/node_modules/lodash/internal/equalByTag.js diff --git a/node_modules/lodash/internal/equalObjects.js b/src/node_modules/lodash/internal/equalObjects.js similarity index 100% rename from node_modules/lodash/internal/equalObjects.js rename to src/node_modules/lodash/internal/equalObjects.js diff --git a/node_modules/lodash/internal/escapeHtmlChar.js b/src/node_modules/lodash/internal/escapeHtmlChar.js similarity index 100% rename from node_modules/lodash/internal/escapeHtmlChar.js rename to src/node_modules/lodash/internal/escapeHtmlChar.js diff --git a/node_modules/lodash/internal/escapeRegExpChar.js b/src/node_modules/lodash/internal/escapeRegExpChar.js similarity index 100% rename from node_modules/lodash/internal/escapeRegExpChar.js rename to src/node_modules/lodash/internal/escapeRegExpChar.js diff --git a/node_modules/lodash/internal/escapeStringChar.js b/src/node_modules/lodash/internal/escapeStringChar.js similarity index 100% rename from node_modules/lodash/internal/escapeStringChar.js rename to src/node_modules/lodash/internal/escapeStringChar.js diff --git a/node_modules/lodash/internal/getData.js b/src/node_modules/lodash/internal/getData.js similarity index 100% rename from node_modules/lodash/internal/getData.js rename to src/node_modules/lodash/internal/getData.js diff --git a/node_modules/lodash/internal/getFuncName.js b/src/node_modules/lodash/internal/getFuncName.js similarity index 100% rename from node_modules/lodash/internal/getFuncName.js rename to src/node_modules/lodash/internal/getFuncName.js diff --git a/node_modules/lodash/internal/getLength.js b/src/node_modules/lodash/internal/getLength.js similarity index 100% rename from node_modules/lodash/internal/getLength.js rename to src/node_modules/lodash/internal/getLength.js diff --git a/node_modules/lodash/internal/getMatchData.js b/src/node_modules/lodash/internal/getMatchData.js similarity index 100% rename from node_modules/lodash/internal/getMatchData.js rename to src/node_modules/lodash/internal/getMatchData.js diff --git a/node_modules/lodash/internal/getNative.js b/src/node_modules/lodash/internal/getNative.js similarity index 100% rename from node_modules/lodash/internal/getNative.js rename to src/node_modules/lodash/internal/getNative.js diff --git a/node_modules/lodash/internal/getView.js b/src/node_modules/lodash/internal/getView.js similarity index 100% rename from node_modules/lodash/internal/getView.js rename to src/node_modules/lodash/internal/getView.js diff --git a/node_modules/lodash/internal/indexOfNaN.js b/src/node_modules/lodash/internal/indexOfNaN.js similarity index 100% rename from node_modules/lodash/internal/indexOfNaN.js rename to src/node_modules/lodash/internal/indexOfNaN.js diff --git a/node_modules/lodash/internal/initCloneArray.js b/src/node_modules/lodash/internal/initCloneArray.js similarity index 100% rename from node_modules/lodash/internal/initCloneArray.js rename to src/node_modules/lodash/internal/initCloneArray.js diff --git a/node_modules/lodash/internal/initCloneByTag.js b/src/node_modules/lodash/internal/initCloneByTag.js similarity index 100% rename from node_modules/lodash/internal/initCloneByTag.js rename to src/node_modules/lodash/internal/initCloneByTag.js diff --git a/node_modules/lodash/internal/initCloneObject.js b/src/node_modules/lodash/internal/initCloneObject.js similarity index 100% rename from node_modules/lodash/internal/initCloneObject.js rename to src/node_modules/lodash/internal/initCloneObject.js diff --git a/node_modules/lodash/internal/invokePath.js b/src/node_modules/lodash/internal/invokePath.js similarity index 100% rename from node_modules/lodash/internal/invokePath.js rename to src/node_modules/lodash/internal/invokePath.js diff --git a/node_modules/lodash/internal/isArrayLike.js b/src/node_modules/lodash/internal/isArrayLike.js similarity index 100% rename from node_modules/lodash/internal/isArrayLike.js rename to src/node_modules/lodash/internal/isArrayLike.js diff --git a/node_modules/lodash/internal/isIndex.js b/src/node_modules/lodash/internal/isIndex.js similarity index 100% rename from node_modules/lodash/internal/isIndex.js rename to src/node_modules/lodash/internal/isIndex.js diff --git a/node_modules/lodash/internal/isIterateeCall.js b/src/node_modules/lodash/internal/isIterateeCall.js similarity index 100% rename from node_modules/lodash/internal/isIterateeCall.js rename to src/node_modules/lodash/internal/isIterateeCall.js diff --git a/node_modules/lodash/internal/isKey.js b/src/node_modules/lodash/internal/isKey.js similarity index 100% rename from node_modules/lodash/internal/isKey.js rename to src/node_modules/lodash/internal/isKey.js diff --git a/node_modules/lodash/internal/isLaziable.js b/src/node_modules/lodash/internal/isLaziable.js similarity index 100% rename from node_modules/lodash/internal/isLaziable.js rename to src/node_modules/lodash/internal/isLaziable.js diff --git a/node_modules/lodash/internal/isLength.js b/src/node_modules/lodash/internal/isLength.js similarity index 100% rename from node_modules/lodash/internal/isLength.js rename to src/node_modules/lodash/internal/isLength.js diff --git a/node_modules/lodash/internal/isObjectLike.js b/src/node_modules/lodash/internal/isObjectLike.js similarity index 100% rename from node_modules/lodash/internal/isObjectLike.js rename to src/node_modules/lodash/internal/isObjectLike.js diff --git a/node_modules/lodash/internal/isSpace.js b/src/node_modules/lodash/internal/isSpace.js similarity index 100% rename from node_modules/lodash/internal/isSpace.js rename to src/node_modules/lodash/internal/isSpace.js diff --git a/node_modules/lodash/internal/isStrictComparable.js b/src/node_modules/lodash/internal/isStrictComparable.js similarity index 100% rename from node_modules/lodash/internal/isStrictComparable.js rename to src/node_modules/lodash/internal/isStrictComparable.js diff --git a/node_modules/lodash/internal/lazyClone.js b/src/node_modules/lodash/internal/lazyClone.js similarity index 100% rename from node_modules/lodash/internal/lazyClone.js rename to src/node_modules/lodash/internal/lazyClone.js diff --git a/node_modules/lodash/internal/lazyReverse.js b/src/node_modules/lodash/internal/lazyReverse.js similarity index 100% rename from node_modules/lodash/internal/lazyReverse.js rename to src/node_modules/lodash/internal/lazyReverse.js diff --git a/node_modules/lodash/internal/lazyValue.js b/src/node_modules/lodash/internal/lazyValue.js similarity index 100% rename from node_modules/lodash/internal/lazyValue.js rename to src/node_modules/lodash/internal/lazyValue.js diff --git a/node_modules/lodash/internal/mapDelete.js b/src/node_modules/lodash/internal/mapDelete.js similarity index 100% rename from node_modules/lodash/internal/mapDelete.js rename to src/node_modules/lodash/internal/mapDelete.js diff --git a/node_modules/lodash/internal/mapGet.js b/src/node_modules/lodash/internal/mapGet.js similarity index 100% rename from node_modules/lodash/internal/mapGet.js rename to src/node_modules/lodash/internal/mapGet.js diff --git a/node_modules/lodash/internal/mapHas.js b/src/node_modules/lodash/internal/mapHas.js similarity index 100% rename from node_modules/lodash/internal/mapHas.js rename to src/node_modules/lodash/internal/mapHas.js diff --git a/node_modules/lodash/internal/mapSet.js b/src/node_modules/lodash/internal/mapSet.js similarity index 100% rename from node_modules/lodash/internal/mapSet.js rename to src/node_modules/lodash/internal/mapSet.js diff --git a/node_modules/lodash/internal/mergeData.js b/src/node_modules/lodash/internal/mergeData.js similarity index 100% rename from node_modules/lodash/internal/mergeData.js rename to src/node_modules/lodash/internal/mergeData.js diff --git a/node_modules/lodash/internal/mergeDefaults.js b/src/node_modules/lodash/internal/mergeDefaults.js similarity index 100% rename from node_modules/lodash/internal/mergeDefaults.js rename to src/node_modules/lodash/internal/mergeDefaults.js diff --git a/node_modules/lodash/internal/metaMap.js b/src/node_modules/lodash/internal/metaMap.js similarity index 100% rename from node_modules/lodash/internal/metaMap.js rename to src/node_modules/lodash/internal/metaMap.js diff --git a/node_modules/lodash/internal/pickByArray.js b/src/node_modules/lodash/internal/pickByArray.js similarity index 100% rename from node_modules/lodash/internal/pickByArray.js rename to src/node_modules/lodash/internal/pickByArray.js diff --git a/node_modules/lodash/internal/pickByCallback.js b/src/node_modules/lodash/internal/pickByCallback.js similarity index 100% rename from node_modules/lodash/internal/pickByCallback.js rename to src/node_modules/lodash/internal/pickByCallback.js diff --git a/node_modules/lodash/internal/reEscape.js b/src/node_modules/lodash/internal/reEscape.js similarity index 100% rename from node_modules/lodash/internal/reEscape.js rename to src/node_modules/lodash/internal/reEscape.js diff --git a/node_modules/lodash/internal/reEvaluate.js b/src/node_modules/lodash/internal/reEvaluate.js similarity index 100% rename from node_modules/lodash/internal/reEvaluate.js rename to src/node_modules/lodash/internal/reEvaluate.js diff --git a/node_modules/lodash/internal/reInterpolate.js b/src/node_modules/lodash/internal/reInterpolate.js similarity index 100% rename from node_modules/lodash/internal/reInterpolate.js rename to src/node_modules/lodash/internal/reInterpolate.js diff --git a/node_modules/lodash/internal/realNames.js b/src/node_modules/lodash/internal/realNames.js similarity index 100% rename from node_modules/lodash/internal/realNames.js rename to src/node_modules/lodash/internal/realNames.js diff --git a/node_modules/lodash/internal/reorder.js b/src/node_modules/lodash/internal/reorder.js similarity index 100% rename from node_modules/lodash/internal/reorder.js rename to src/node_modules/lodash/internal/reorder.js diff --git a/node_modules/lodash/internal/replaceHolders.js b/src/node_modules/lodash/internal/replaceHolders.js similarity index 100% rename from node_modules/lodash/internal/replaceHolders.js rename to src/node_modules/lodash/internal/replaceHolders.js diff --git a/node_modules/lodash/internal/setData.js b/src/node_modules/lodash/internal/setData.js similarity index 100% rename from node_modules/lodash/internal/setData.js rename to src/node_modules/lodash/internal/setData.js diff --git a/node_modules/lodash/internal/shimKeys.js b/src/node_modules/lodash/internal/shimKeys.js similarity index 100% rename from node_modules/lodash/internal/shimKeys.js rename to src/node_modules/lodash/internal/shimKeys.js diff --git a/node_modules/lodash/internal/sortedUniq.js b/src/node_modules/lodash/internal/sortedUniq.js similarity index 100% rename from node_modules/lodash/internal/sortedUniq.js rename to src/node_modules/lodash/internal/sortedUniq.js diff --git a/node_modules/lodash/internal/toIterable.js b/src/node_modules/lodash/internal/toIterable.js similarity index 100% rename from node_modules/lodash/internal/toIterable.js rename to src/node_modules/lodash/internal/toIterable.js diff --git a/node_modules/lodash/internal/toObject.js b/src/node_modules/lodash/internal/toObject.js similarity index 100% rename from node_modules/lodash/internal/toObject.js rename to src/node_modules/lodash/internal/toObject.js diff --git a/node_modules/lodash/internal/toPath.js b/src/node_modules/lodash/internal/toPath.js similarity index 100% rename from node_modules/lodash/internal/toPath.js rename to src/node_modules/lodash/internal/toPath.js diff --git a/node_modules/lodash/internal/trimmedLeftIndex.js b/src/node_modules/lodash/internal/trimmedLeftIndex.js similarity index 100% rename from node_modules/lodash/internal/trimmedLeftIndex.js rename to src/node_modules/lodash/internal/trimmedLeftIndex.js diff --git a/node_modules/lodash/internal/trimmedRightIndex.js b/src/node_modules/lodash/internal/trimmedRightIndex.js similarity index 100% rename from node_modules/lodash/internal/trimmedRightIndex.js rename to src/node_modules/lodash/internal/trimmedRightIndex.js diff --git a/node_modules/lodash/internal/unescapeHtmlChar.js b/src/node_modules/lodash/internal/unescapeHtmlChar.js similarity index 100% rename from node_modules/lodash/internal/unescapeHtmlChar.js rename to src/node_modules/lodash/internal/unescapeHtmlChar.js diff --git a/node_modules/lodash/internal/wrapperClone.js b/src/node_modules/lodash/internal/wrapperClone.js similarity index 100% rename from node_modules/lodash/internal/wrapperClone.js rename to src/node_modules/lodash/internal/wrapperClone.js diff --git a/node_modules/lodash/lang.js b/src/node_modules/lodash/lang.js similarity index 100% rename from node_modules/lodash/lang.js rename to src/node_modules/lodash/lang.js diff --git a/node_modules/lodash/lang/clone.js b/src/node_modules/lodash/lang/clone.js similarity index 100% rename from node_modules/lodash/lang/clone.js rename to src/node_modules/lodash/lang/clone.js diff --git a/node_modules/lodash/lang/cloneDeep.js b/src/node_modules/lodash/lang/cloneDeep.js similarity index 100% rename from node_modules/lodash/lang/cloneDeep.js rename to src/node_modules/lodash/lang/cloneDeep.js diff --git a/node_modules/lodash/lang/eq.js b/src/node_modules/lodash/lang/eq.js similarity index 100% rename from node_modules/lodash/lang/eq.js rename to src/node_modules/lodash/lang/eq.js diff --git a/node_modules/lodash/lang/gt.js b/src/node_modules/lodash/lang/gt.js similarity index 100% rename from node_modules/lodash/lang/gt.js rename to src/node_modules/lodash/lang/gt.js diff --git a/node_modules/lodash/lang/gte.js b/src/node_modules/lodash/lang/gte.js similarity index 100% rename from node_modules/lodash/lang/gte.js rename to src/node_modules/lodash/lang/gte.js diff --git a/node_modules/lodash/lang/isArguments.js b/src/node_modules/lodash/lang/isArguments.js similarity index 100% rename from node_modules/lodash/lang/isArguments.js rename to src/node_modules/lodash/lang/isArguments.js diff --git a/node_modules/lodash/lang/isArray.js b/src/node_modules/lodash/lang/isArray.js similarity index 100% rename from node_modules/lodash/lang/isArray.js rename to src/node_modules/lodash/lang/isArray.js diff --git a/node_modules/lodash/lang/isBoolean.js b/src/node_modules/lodash/lang/isBoolean.js similarity index 100% rename from node_modules/lodash/lang/isBoolean.js rename to src/node_modules/lodash/lang/isBoolean.js diff --git a/node_modules/lodash/lang/isDate.js b/src/node_modules/lodash/lang/isDate.js similarity index 100% rename from node_modules/lodash/lang/isDate.js rename to src/node_modules/lodash/lang/isDate.js diff --git a/node_modules/lodash/lang/isElement.js b/src/node_modules/lodash/lang/isElement.js similarity index 100% rename from node_modules/lodash/lang/isElement.js rename to src/node_modules/lodash/lang/isElement.js diff --git a/node_modules/lodash/lang/isEmpty.js b/src/node_modules/lodash/lang/isEmpty.js similarity index 100% rename from node_modules/lodash/lang/isEmpty.js rename to src/node_modules/lodash/lang/isEmpty.js diff --git a/node_modules/lodash/lang/isEqual.js b/src/node_modules/lodash/lang/isEqual.js similarity index 100% rename from node_modules/lodash/lang/isEqual.js rename to src/node_modules/lodash/lang/isEqual.js diff --git a/node_modules/lodash/lang/isError.js b/src/node_modules/lodash/lang/isError.js similarity index 100% rename from node_modules/lodash/lang/isError.js rename to src/node_modules/lodash/lang/isError.js diff --git a/node_modules/lodash/lang/isFinite.js b/src/node_modules/lodash/lang/isFinite.js similarity index 100% rename from node_modules/lodash/lang/isFinite.js rename to src/node_modules/lodash/lang/isFinite.js diff --git a/node_modules/lodash/lang/isFunction.js b/src/node_modules/lodash/lang/isFunction.js similarity index 100% rename from node_modules/lodash/lang/isFunction.js rename to src/node_modules/lodash/lang/isFunction.js diff --git a/node_modules/lodash/lang/isMatch.js b/src/node_modules/lodash/lang/isMatch.js similarity index 100% rename from node_modules/lodash/lang/isMatch.js rename to src/node_modules/lodash/lang/isMatch.js diff --git a/node_modules/lodash/lang/isNaN.js b/src/node_modules/lodash/lang/isNaN.js similarity index 100% rename from node_modules/lodash/lang/isNaN.js rename to src/node_modules/lodash/lang/isNaN.js diff --git a/node_modules/lodash/lang/isNative.js b/src/node_modules/lodash/lang/isNative.js similarity index 100% rename from node_modules/lodash/lang/isNative.js rename to src/node_modules/lodash/lang/isNative.js diff --git a/node_modules/lodash/lang/isNull.js b/src/node_modules/lodash/lang/isNull.js similarity index 100% rename from node_modules/lodash/lang/isNull.js rename to src/node_modules/lodash/lang/isNull.js diff --git a/node_modules/lodash/lang/isNumber.js b/src/node_modules/lodash/lang/isNumber.js similarity index 100% rename from node_modules/lodash/lang/isNumber.js rename to src/node_modules/lodash/lang/isNumber.js diff --git a/node_modules/lodash/lang/isObject.js b/src/node_modules/lodash/lang/isObject.js similarity index 100% rename from node_modules/lodash/lang/isObject.js rename to src/node_modules/lodash/lang/isObject.js diff --git a/node_modules/lodash/lang/isPlainObject.js b/src/node_modules/lodash/lang/isPlainObject.js similarity index 100% rename from node_modules/lodash/lang/isPlainObject.js rename to src/node_modules/lodash/lang/isPlainObject.js diff --git a/node_modules/lodash/lang/isRegExp.js b/src/node_modules/lodash/lang/isRegExp.js similarity index 100% rename from node_modules/lodash/lang/isRegExp.js rename to src/node_modules/lodash/lang/isRegExp.js diff --git a/node_modules/lodash/lang/isString.js b/src/node_modules/lodash/lang/isString.js similarity index 100% rename from node_modules/lodash/lang/isString.js rename to src/node_modules/lodash/lang/isString.js diff --git a/node_modules/lodash/lang/isTypedArray.js b/src/node_modules/lodash/lang/isTypedArray.js similarity index 100% rename from node_modules/lodash/lang/isTypedArray.js rename to src/node_modules/lodash/lang/isTypedArray.js diff --git a/node_modules/lodash/lang/isUndefined.js b/src/node_modules/lodash/lang/isUndefined.js similarity index 100% rename from node_modules/lodash/lang/isUndefined.js rename to src/node_modules/lodash/lang/isUndefined.js diff --git a/node_modules/lodash/lang/lt.js b/src/node_modules/lodash/lang/lt.js similarity index 100% rename from node_modules/lodash/lang/lt.js rename to src/node_modules/lodash/lang/lt.js diff --git a/node_modules/lodash/lang/lte.js b/src/node_modules/lodash/lang/lte.js similarity index 100% rename from node_modules/lodash/lang/lte.js rename to src/node_modules/lodash/lang/lte.js diff --git a/node_modules/lodash/lang/toArray.js b/src/node_modules/lodash/lang/toArray.js similarity index 100% rename from node_modules/lodash/lang/toArray.js rename to src/node_modules/lodash/lang/toArray.js diff --git a/node_modules/lodash/lang/toPlainObject.js b/src/node_modules/lodash/lang/toPlainObject.js similarity index 100% rename from node_modules/lodash/lang/toPlainObject.js rename to src/node_modules/lodash/lang/toPlainObject.js diff --git a/node_modules/lodash/math.js b/src/node_modules/lodash/math.js similarity index 100% rename from node_modules/lodash/math.js rename to src/node_modules/lodash/math.js diff --git a/node_modules/lodash/math/add.js b/src/node_modules/lodash/math/add.js similarity index 100% rename from node_modules/lodash/math/add.js rename to src/node_modules/lodash/math/add.js diff --git a/node_modules/lodash/math/ceil.js b/src/node_modules/lodash/math/ceil.js similarity index 100% rename from node_modules/lodash/math/ceil.js rename to src/node_modules/lodash/math/ceil.js diff --git a/node_modules/lodash/math/floor.js b/src/node_modules/lodash/math/floor.js similarity index 100% rename from node_modules/lodash/math/floor.js rename to src/node_modules/lodash/math/floor.js diff --git a/node_modules/lodash/math/max.js b/src/node_modules/lodash/math/max.js similarity index 100% rename from node_modules/lodash/math/max.js rename to src/node_modules/lodash/math/max.js diff --git a/node_modules/lodash/math/min.js b/src/node_modules/lodash/math/min.js similarity index 100% rename from node_modules/lodash/math/min.js rename to src/node_modules/lodash/math/min.js diff --git a/node_modules/lodash/math/round.js b/src/node_modules/lodash/math/round.js similarity index 100% rename from node_modules/lodash/math/round.js rename to src/node_modules/lodash/math/round.js diff --git a/node_modules/lodash/math/sum.js b/src/node_modules/lodash/math/sum.js similarity index 100% rename from node_modules/lodash/math/sum.js rename to src/node_modules/lodash/math/sum.js diff --git a/node_modules/lodash/number.js b/src/node_modules/lodash/number.js similarity index 100% rename from node_modules/lodash/number.js rename to src/node_modules/lodash/number.js diff --git a/node_modules/lodash/number/inRange.js b/src/node_modules/lodash/number/inRange.js similarity index 100% rename from node_modules/lodash/number/inRange.js rename to src/node_modules/lodash/number/inRange.js diff --git a/node_modules/lodash/number/random.js b/src/node_modules/lodash/number/random.js similarity index 100% rename from node_modules/lodash/number/random.js rename to src/node_modules/lodash/number/random.js diff --git a/node_modules/lodash/object.js b/src/node_modules/lodash/object.js similarity index 100% rename from node_modules/lodash/object.js rename to src/node_modules/lodash/object.js diff --git a/node_modules/lodash/object/assign.js b/src/node_modules/lodash/object/assign.js similarity index 100% rename from node_modules/lodash/object/assign.js rename to src/node_modules/lodash/object/assign.js diff --git a/node_modules/lodash/object/create.js b/src/node_modules/lodash/object/create.js similarity index 100% rename from node_modules/lodash/object/create.js rename to src/node_modules/lodash/object/create.js diff --git a/node_modules/lodash/object/defaults.js b/src/node_modules/lodash/object/defaults.js similarity index 100% rename from node_modules/lodash/object/defaults.js rename to src/node_modules/lodash/object/defaults.js diff --git a/node_modules/lodash/object/defaultsDeep.js b/src/node_modules/lodash/object/defaultsDeep.js similarity index 100% rename from node_modules/lodash/object/defaultsDeep.js rename to src/node_modules/lodash/object/defaultsDeep.js diff --git a/node_modules/lodash/object/extend.js b/src/node_modules/lodash/object/extend.js similarity index 100% rename from node_modules/lodash/object/extend.js rename to src/node_modules/lodash/object/extend.js diff --git a/node_modules/lodash/object/findKey.js b/src/node_modules/lodash/object/findKey.js similarity index 100% rename from node_modules/lodash/object/findKey.js rename to src/node_modules/lodash/object/findKey.js diff --git a/node_modules/lodash/object/findLastKey.js b/src/node_modules/lodash/object/findLastKey.js similarity index 100% rename from node_modules/lodash/object/findLastKey.js rename to src/node_modules/lodash/object/findLastKey.js diff --git a/node_modules/lodash/object/forIn.js b/src/node_modules/lodash/object/forIn.js similarity index 100% rename from node_modules/lodash/object/forIn.js rename to src/node_modules/lodash/object/forIn.js diff --git a/node_modules/lodash/object/forInRight.js b/src/node_modules/lodash/object/forInRight.js similarity index 100% rename from node_modules/lodash/object/forInRight.js rename to src/node_modules/lodash/object/forInRight.js diff --git a/node_modules/lodash/object/forOwn.js b/src/node_modules/lodash/object/forOwn.js similarity index 100% rename from node_modules/lodash/object/forOwn.js rename to src/node_modules/lodash/object/forOwn.js diff --git a/node_modules/lodash/object/forOwnRight.js b/src/node_modules/lodash/object/forOwnRight.js similarity index 100% rename from node_modules/lodash/object/forOwnRight.js rename to src/node_modules/lodash/object/forOwnRight.js diff --git a/node_modules/lodash/object/functions.js b/src/node_modules/lodash/object/functions.js similarity index 100% rename from node_modules/lodash/object/functions.js rename to src/node_modules/lodash/object/functions.js diff --git a/node_modules/lodash/object/get.js b/src/node_modules/lodash/object/get.js similarity index 100% rename from node_modules/lodash/object/get.js rename to src/node_modules/lodash/object/get.js diff --git a/node_modules/lodash/object/has.js b/src/node_modules/lodash/object/has.js similarity index 100% rename from node_modules/lodash/object/has.js rename to src/node_modules/lodash/object/has.js diff --git a/node_modules/lodash/object/invert.js b/src/node_modules/lodash/object/invert.js similarity index 100% rename from node_modules/lodash/object/invert.js rename to src/node_modules/lodash/object/invert.js diff --git a/node_modules/lodash/object/keys.js b/src/node_modules/lodash/object/keys.js similarity index 100% rename from node_modules/lodash/object/keys.js rename to src/node_modules/lodash/object/keys.js diff --git a/node_modules/lodash/object/keysIn.js b/src/node_modules/lodash/object/keysIn.js similarity index 100% rename from node_modules/lodash/object/keysIn.js rename to src/node_modules/lodash/object/keysIn.js diff --git a/node_modules/lodash/object/mapKeys.js b/src/node_modules/lodash/object/mapKeys.js similarity index 100% rename from node_modules/lodash/object/mapKeys.js rename to src/node_modules/lodash/object/mapKeys.js diff --git a/node_modules/lodash/object/mapValues.js b/src/node_modules/lodash/object/mapValues.js similarity index 100% rename from node_modules/lodash/object/mapValues.js rename to src/node_modules/lodash/object/mapValues.js diff --git a/node_modules/lodash/object/merge.js b/src/node_modules/lodash/object/merge.js similarity index 100% rename from node_modules/lodash/object/merge.js rename to src/node_modules/lodash/object/merge.js diff --git a/node_modules/lodash/object/methods.js b/src/node_modules/lodash/object/methods.js similarity index 100% rename from node_modules/lodash/object/methods.js rename to src/node_modules/lodash/object/methods.js diff --git a/node_modules/lodash/object/omit.js b/src/node_modules/lodash/object/omit.js similarity index 100% rename from node_modules/lodash/object/omit.js rename to src/node_modules/lodash/object/omit.js diff --git a/node_modules/lodash/object/pairs.js b/src/node_modules/lodash/object/pairs.js similarity index 100% rename from node_modules/lodash/object/pairs.js rename to src/node_modules/lodash/object/pairs.js diff --git a/node_modules/lodash/object/pick.js b/src/node_modules/lodash/object/pick.js similarity index 100% rename from node_modules/lodash/object/pick.js rename to src/node_modules/lodash/object/pick.js diff --git a/node_modules/lodash/object/result.js b/src/node_modules/lodash/object/result.js similarity index 100% rename from node_modules/lodash/object/result.js rename to src/node_modules/lodash/object/result.js diff --git a/node_modules/lodash/object/set.js b/src/node_modules/lodash/object/set.js similarity index 100% rename from node_modules/lodash/object/set.js rename to src/node_modules/lodash/object/set.js diff --git a/node_modules/lodash/object/transform.js b/src/node_modules/lodash/object/transform.js similarity index 100% rename from node_modules/lodash/object/transform.js rename to src/node_modules/lodash/object/transform.js diff --git a/node_modules/lodash/object/values.js b/src/node_modules/lodash/object/values.js similarity index 100% rename from node_modules/lodash/object/values.js rename to src/node_modules/lodash/object/values.js diff --git a/node_modules/lodash/object/valuesIn.js b/src/node_modules/lodash/object/valuesIn.js similarity index 100% rename from node_modules/lodash/object/valuesIn.js rename to src/node_modules/lodash/object/valuesIn.js diff --git a/node_modules/lodash/package.json b/src/node_modules/lodash/package.json similarity index 100% rename from node_modules/lodash/package.json rename to src/node_modules/lodash/package.json diff --git a/node_modules/lodash/string.js b/src/node_modules/lodash/string.js similarity index 100% rename from node_modules/lodash/string.js rename to src/node_modules/lodash/string.js diff --git a/node_modules/lodash/string/camelCase.js b/src/node_modules/lodash/string/camelCase.js similarity index 100% rename from node_modules/lodash/string/camelCase.js rename to src/node_modules/lodash/string/camelCase.js diff --git a/node_modules/lodash/string/capitalize.js b/src/node_modules/lodash/string/capitalize.js similarity index 100% rename from node_modules/lodash/string/capitalize.js rename to src/node_modules/lodash/string/capitalize.js diff --git a/node_modules/lodash/string/deburr.js b/src/node_modules/lodash/string/deburr.js similarity index 100% rename from node_modules/lodash/string/deburr.js rename to src/node_modules/lodash/string/deburr.js diff --git a/node_modules/lodash/string/endsWith.js b/src/node_modules/lodash/string/endsWith.js similarity index 100% rename from node_modules/lodash/string/endsWith.js rename to src/node_modules/lodash/string/endsWith.js diff --git a/node_modules/lodash/string/escape.js b/src/node_modules/lodash/string/escape.js similarity index 100% rename from node_modules/lodash/string/escape.js rename to src/node_modules/lodash/string/escape.js diff --git a/node_modules/lodash/string/escapeRegExp.js b/src/node_modules/lodash/string/escapeRegExp.js similarity index 100% rename from node_modules/lodash/string/escapeRegExp.js rename to src/node_modules/lodash/string/escapeRegExp.js diff --git a/node_modules/lodash/string/kebabCase.js b/src/node_modules/lodash/string/kebabCase.js similarity index 100% rename from node_modules/lodash/string/kebabCase.js rename to src/node_modules/lodash/string/kebabCase.js diff --git a/node_modules/lodash/string/pad.js b/src/node_modules/lodash/string/pad.js similarity index 100% rename from node_modules/lodash/string/pad.js rename to src/node_modules/lodash/string/pad.js diff --git a/node_modules/lodash/string/padLeft.js b/src/node_modules/lodash/string/padLeft.js similarity index 100% rename from node_modules/lodash/string/padLeft.js rename to src/node_modules/lodash/string/padLeft.js diff --git a/node_modules/lodash/string/padRight.js b/src/node_modules/lodash/string/padRight.js similarity index 100% rename from node_modules/lodash/string/padRight.js rename to src/node_modules/lodash/string/padRight.js diff --git a/node_modules/lodash/string/parseInt.js b/src/node_modules/lodash/string/parseInt.js similarity index 100% rename from node_modules/lodash/string/parseInt.js rename to src/node_modules/lodash/string/parseInt.js diff --git a/node_modules/lodash/string/repeat.js b/src/node_modules/lodash/string/repeat.js similarity index 100% rename from node_modules/lodash/string/repeat.js rename to src/node_modules/lodash/string/repeat.js diff --git a/node_modules/lodash/string/snakeCase.js b/src/node_modules/lodash/string/snakeCase.js similarity index 100% rename from node_modules/lodash/string/snakeCase.js rename to src/node_modules/lodash/string/snakeCase.js diff --git a/node_modules/lodash/string/startCase.js b/src/node_modules/lodash/string/startCase.js similarity index 100% rename from node_modules/lodash/string/startCase.js rename to src/node_modules/lodash/string/startCase.js diff --git a/node_modules/lodash/string/startsWith.js b/src/node_modules/lodash/string/startsWith.js similarity index 100% rename from node_modules/lodash/string/startsWith.js rename to src/node_modules/lodash/string/startsWith.js diff --git a/node_modules/lodash/string/template.js b/src/node_modules/lodash/string/template.js similarity index 100% rename from node_modules/lodash/string/template.js rename to src/node_modules/lodash/string/template.js diff --git a/node_modules/lodash/string/templateSettings.js b/src/node_modules/lodash/string/templateSettings.js similarity index 100% rename from node_modules/lodash/string/templateSettings.js rename to src/node_modules/lodash/string/templateSettings.js diff --git a/node_modules/lodash/string/trim.js b/src/node_modules/lodash/string/trim.js similarity index 100% rename from node_modules/lodash/string/trim.js rename to src/node_modules/lodash/string/trim.js diff --git a/node_modules/lodash/string/trimLeft.js b/src/node_modules/lodash/string/trimLeft.js similarity index 100% rename from node_modules/lodash/string/trimLeft.js rename to src/node_modules/lodash/string/trimLeft.js diff --git a/node_modules/lodash/string/trimRight.js b/src/node_modules/lodash/string/trimRight.js similarity index 100% rename from node_modules/lodash/string/trimRight.js rename to src/node_modules/lodash/string/trimRight.js diff --git a/node_modules/lodash/string/trunc.js b/src/node_modules/lodash/string/trunc.js similarity index 100% rename from node_modules/lodash/string/trunc.js rename to src/node_modules/lodash/string/trunc.js diff --git a/node_modules/lodash/string/unescape.js b/src/node_modules/lodash/string/unescape.js similarity index 100% rename from node_modules/lodash/string/unescape.js rename to src/node_modules/lodash/string/unescape.js diff --git a/node_modules/lodash/string/words.js b/src/node_modules/lodash/string/words.js similarity index 100% rename from node_modules/lodash/string/words.js rename to src/node_modules/lodash/string/words.js diff --git a/node_modules/lodash/support.js b/src/node_modules/lodash/support.js similarity index 100% rename from node_modules/lodash/support.js rename to src/node_modules/lodash/support.js diff --git a/node_modules/lodash/utility.js b/src/node_modules/lodash/utility.js similarity index 100% rename from node_modules/lodash/utility.js rename to src/node_modules/lodash/utility.js diff --git a/node_modules/lodash/utility/attempt.js b/src/node_modules/lodash/utility/attempt.js similarity index 100% rename from node_modules/lodash/utility/attempt.js rename to src/node_modules/lodash/utility/attempt.js diff --git a/node_modules/lodash/utility/callback.js b/src/node_modules/lodash/utility/callback.js similarity index 100% rename from node_modules/lodash/utility/callback.js rename to src/node_modules/lodash/utility/callback.js diff --git a/node_modules/lodash/utility/constant.js b/src/node_modules/lodash/utility/constant.js similarity index 100% rename from node_modules/lodash/utility/constant.js rename to src/node_modules/lodash/utility/constant.js diff --git a/node_modules/lodash/utility/identity.js b/src/node_modules/lodash/utility/identity.js similarity index 100% rename from node_modules/lodash/utility/identity.js rename to src/node_modules/lodash/utility/identity.js diff --git a/node_modules/lodash/utility/iteratee.js b/src/node_modules/lodash/utility/iteratee.js similarity index 100% rename from node_modules/lodash/utility/iteratee.js rename to src/node_modules/lodash/utility/iteratee.js diff --git a/node_modules/lodash/utility/matches.js b/src/node_modules/lodash/utility/matches.js similarity index 100% rename from node_modules/lodash/utility/matches.js rename to src/node_modules/lodash/utility/matches.js diff --git a/node_modules/lodash/utility/matchesProperty.js b/src/node_modules/lodash/utility/matchesProperty.js similarity index 100% rename from node_modules/lodash/utility/matchesProperty.js rename to src/node_modules/lodash/utility/matchesProperty.js diff --git a/node_modules/lodash/utility/method.js b/src/node_modules/lodash/utility/method.js similarity index 100% rename from node_modules/lodash/utility/method.js rename to src/node_modules/lodash/utility/method.js diff --git a/node_modules/lodash/utility/methodOf.js b/src/node_modules/lodash/utility/methodOf.js similarity index 100% rename from node_modules/lodash/utility/methodOf.js rename to src/node_modules/lodash/utility/methodOf.js diff --git a/node_modules/lodash/utility/mixin.js b/src/node_modules/lodash/utility/mixin.js similarity index 100% rename from node_modules/lodash/utility/mixin.js rename to src/node_modules/lodash/utility/mixin.js diff --git a/node_modules/lodash/utility/noop.js b/src/node_modules/lodash/utility/noop.js similarity index 100% rename from node_modules/lodash/utility/noop.js rename to src/node_modules/lodash/utility/noop.js diff --git a/node_modules/lodash/utility/property.js b/src/node_modules/lodash/utility/property.js similarity index 100% rename from node_modules/lodash/utility/property.js rename to src/node_modules/lodash/utility/property.js diff --git a/node_modules/lodash/utility/propertyOf.js b/src/node_modules/lodash/utility/propertyOf.js similarity index 100% rename from node_modules/lodash/utility/propertyOf.js rename to src/node_modules/lodash/utility/propertyOf.js diff --git a/node_modules/lodash/utility/range.js b/src/node_modules/lodash/utility/range.js similarity index 100% rename from node_modules/lodash/utility/range.js rename to src/node_modules/lodash/utility/range.js diff --git a/node_modules/lodash/utility/times.js b/src/node_modules/lodash/utility/times.js similarity index 100% rename from node_modules/lodash/utility/times.js rename to src/node_modules/lodash/utility/times.js diff --git a/node_modules/lodash/utility/uniqueId.js b/src/node_modules/lodash/utility/uniqueId.js similarity index 100% rename from node_modules/lodash/utility/uniqueId.js rename to src/node_modules/lodash/utility/uniqueId.js diff --git a/node_modules/safer-buffer/LICENSE b/src/node_modules/safer-buffer/LICENSE similarity index 100% rename from node_modules/safer-buffer/LICENSE rename to src/node_modules/safer-buffer/LICENSE diff --git a/node_modules/safer-buffer/Porting-Buffer.md b/src/node_modules/safer-buffer/Porting-Buffer.md similarity index 100% rename from node_modules/safer-buffer/Porting-Buffer.md rename to src/node_modules/safer-buffer/Porting-Buffer.md diff --git a/node_modules/safer-buffer/Readme.md b/src/node_modules/safer-buffer/Readme.md similarity index 100% rename from node_modules/safer-buffer/Readme.md rename to src/node_modules/safer-buffer/Readme.md diff --git a/node_modules/safer-buffer/dangerous.js b/src/node_modules/safer-buffer/dangerous.js similarity index 100% rename from node_modules/safer-buffer/dangerous.js rename to src/node_modules/safer-buffer/dangerous.js diff --git a/node_modules/safer-buffer/package.json b/src/node_modules/safer-buffer/package.json similarity index 100% rename from node_modules/safer-buffer/package.json rename to src/node_modules/safer-buffer/package.json diff --git a/node_modules/safer-buffer/safer.js b/src/node_modules/safer-buffer/safer.js similarity index 100% rename from node_modules/safer-buffer/safer.js rename to src/node_modules/safer-buffer/safer.js diff --git a/node_modules/safer-buffer/tests.js b/src/node_modules/safer-buffer/tests.js similarity index 100% rename from node_modules/safer-buffer/tests.js rename to src/node_modules/safer-buffer/tests.js diff --git a/package-lock.json b/src/package-lock.json similarity index 100% rename from package-lock.json rename to src/package-lock.json diff --git a/plugin.json b/src/plugin.json similarity index 100% rename from plugin.json rename to src/plugin.json diff --git a/preload.js b/src/preload.js similarity index 96% rename from preload.js rename to src/preload.js index b268ba2..eaf8abd 100644 --- a/preload.js +++ b/src/preload.js @@ -5,7 +5,6 @@ const path = require("path") const fs = require('fs'); const process = require('process'); const { clipboard, shell } = require('electron') -// const jschardet = require('jschardet'); isDev = /unsafe-\w+\.asar/.test(__dirname) ? false : true