summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2018-08-24 03:53:41 -0500
committerMonty Taylor <mordred@inaugust.com>2018-08-24 05:22:18 -0400
commitac69e43c7545e45a77f90a2a02d1206a490d3e29 (patch)
tree6a8d5e3a7587188684155c4f58a9b99ff88fe07b
parent2712cdc63933fd4ac52a22a3053e2b6f8d568e18 (diff)
Remove last vestiges of bower
-rw-r--r--gulpfile.js30
-rw-r--r--package.json5
-rw-r--r--yarn.lock352
3 files changed, 27 insertions, 360 deletions
diff --git a/gulpfile.js b/gulpfile.js
index e3bb6a6..bfbd6c8 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -4,7 +4,6 @@
4 var fs = require('fs'); 4 var fs = require('fs');
5 var cheerio = require('cheerio'); 5 var cheerio = require('cheerio');
6 var rimraf = require('rimraf'); 6 var rimraf = require('rimraf');
7 var mainNPMFiles = require('npmfiles');
8 7
9 var gulp = require('gulp'); 8 var gulp = require('gulp');
10 var git = require('gulp-git'); 9 var git = require('gulp-git');
@@ -44,9 +43,6 @@
44 ] 43 ]
45 }; 44 };
46 45
47 // Contents of all our bower dependencies' main:[] fields.
48 var bowerFiles = mainNPMFiles();
49
50 // The current package.json file. 46 // The current package.json file.
51 var packageJson = require('./package.json'); 47 var packageJson = require('./package.json');
52 48
@@ -142,9 +138,7 @@
142 }); 138 });
143 139
144 /** 140 /**
145 * Build the static file structure from our bower dependencies. Reveal.js 141 * Build the static file structure from our dependencies.
146 * is given a special snowflake status, because it doesn't observe the
147 * standard packaging format that bower files like.
148 */ 142 */
149 gulp.task('package:libs', function (cb) { 143 gulp.task('package:libs', function (cb) {
150 144
@@ -152,23 +146,16 @@
152 './node_modules/bootstrap/dist/css/bootstrap.css') 146 './node_modules/bootstrap/dist/css/bootstrap.css')
153 .pipe(gulp.dest(dir.dist + '/css')); 147 .pipe(gulp.dest(dir.dist + '/css'));
154 148
155 var resolveCSS = gulp.src(bowerFiles) 149 var resolveCSS = gulp.src(
150 './node_modules/@fortawesome/fontawesome-free/css/*')
156 .pipe(filter('*.css')) 151 .pipe(filter('*.css'))
157 .pipe(gulp.dest(dir.dist + '/css')); 152 .pipe(gulp.dest(dir.dist + '/css'));
158 153
159 var resolveLESS = gulp.src(bowerFiles) 154 var resolveFonts = gulp.src(
160 .pipe(filter('*.less')) 155 './node_modules/@fortawesome/fontawesome-free/webfonts/*')
161 .pipe(less())
162 .pipe(gulp.dest(dir.dist + '/css'));
163
164 var resolveFonts = gulp.src(bowerFiles)
165 .pipe(filter(['*.otf', '*.eot', '*.svg', '*.ttf', '*.woff', '*.woff2'])) 156 .pipe(filter(['*.otf', '*.eot', '*.svg', '*.ttf', '*.woff', '*.woff2']))
166 .pipe(gulp.dest(dir.dist + '/fonts')); 157 .pipe(gulp.dest(dir.dist + '/fonts'));
167 158
168 var resolveLibs = gulp.src(bowerFiles)
169 .pipe(filter('*.js'))
170 .pipe(gulp.dest(dir.dist + '/js'));
171
172 // Reveal.js is a special snowflake. 159 // Reveal.js is a special snowflake.
173 var resolveReveal = gulp.src('./node_modules/reveal.js/*/**/*.*', 160 var resolveReveal = gulp.src('./node_modules/reveal.js/*/**/*.*',
174 {'base': './node_modules/reveal.js/'}) 161 {'base': './node_modules/reveal.js/'})
@@ -183,9 +170,10 @@
183 .pipe(gulp.dest(dir.dist)); 170 .pipe(gulp.dest(dir.dist));
184 171
185 streamqueue({'objectMode': true}, 172 streamqueue({'objectMode': true},
186 resolveBootstrap, resolveCSS, 173 resolveBootstrap,
187 resolveLESS, resolveReveal, 174 resolveCSS,
188 resolveLibs, resolveFonts); 175 resolveReveal,
176 resolveFonts);
189 cb() 177 cb()
190 178
191 }); 179 });
diff --git a/package.json b/package.json
index 5d653b6..8b367e0 100644
--- a/package.json
+++ b/package.json
@@ -18,14 +18,13 @@
18 }, 18 },
19 "license": "CC-BY 4.0", 19 "license": "CC-BY 4.0",
20 "dependencies": { 20 "dependencies": {
21 "@bower_components/font-awesome": "FortAwesome/Font-Awesome#~4.3.0", 21 "@fortawesome/fontawesome-free": "^5.2.0",
22 "bootstrap": "^3.3.5", 22 "bootstrap": "^3.3.5",
23 "font-mfizz": "^2.4.1", 23 "font-mfizz": "^2.4.1",
24 "modernizr": "^3.6.0", 24 "modernizr": "^3.6.0",
25 "reveal.js": "^3.7.0" 25 "reveal.js": "^3.7.0"
26 }, 26 },
27 "devDependencies": { 27 "devDependencies": {
28 "bower": "^1.4.1",
29 "cheerio": "^0.19.0", 28 "cheerio": "^0.19.0",
30 "gulp": "^4.0.0", 29 "gulp": "^4.0.0",
31 "gulp-change": "^1.0.0", 30 "gulp-change": "^1.0.0",
@@ -39,8 +38,6 @@
39 "gulp-rename": "^1.2.2", 38 "gulp-rename": "^1.2.2",
40 "gulp-rsync": "^0.0.5", 39 "gulp-rsync": "^0.0.5",
41 "gulp-webserver": "^0.9.1", 40 "gulp-webserver": "^0.9.1",
42 "main-bower-files": "^2.9.0",
43 "npmfiles": "^0.1.1",
44 "rimraf": "^2.4.2", 41 "rimraf": "^2.4.2",
45 "streamqueue": "^1.1.0" 42 "streamqueue": "^1.1.0"
46 }, 43 },
diff --git a/yarn.lock b/yarn.lock
index bda6194..9749271 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,9 +2,9 @@
2# yarn lockfile v1 2# yarn lockfile v1
3 3
4 4
5"@bower_components/font-awesome@FortAwesome/Font-Awesome#~4.3.0": 5"@fortawesome/fontawesome-free@^5.2.0":
6 version "4.3.0" 6 version "5.2.0"
7 resolved "https://codeload.github.com/FortAwesome/Font-Awesome/tar.gz/41b9ed01103e6820c3cb043ba7ddab30ecd3f4c0" 7 resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.2.0.tgz#50cd9856774351c56c0b1b0db4efe122d7913e58"
8 8
9abbrev@1: 9abbrev@1:
10 version "1.1.1" 10 version "1.1.1"
@@ -149,12 +149,6 @@ arr-diff@^1.0.1:
149 arr-flatten "^1.0.1" 149 arr-flatten "^1.0.1"
150 array-slice "^0.2.3" 150 array-slice "^0.2.3"
151 151
152arr-diff@^2.0.0:
153 version "2.0.0"
154 resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
155 dependencies:
156 arr-flatten "^1.0.1"
157
158arr-diff@^4.0.0: 152arr-diff@^4.0.0:
159 version "4.0.0" 153 version "4.0.0"
160 resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 154 resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
@@ -234,10 +228,6 @@ array-uniq@^1.0.1, array-uniq@^1.0.2:
234 version "1.0.3" 228 version "1.0.3"
235 resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 229 resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
236 230
237array-unique@^0.2.1:
238 version "0.2.1"
239 resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
240
241array-unique@^0.3.2: 231array-unique@^0.3.2:
242 version "0.3.2" 232 version "0.3.2"
243 resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 233 resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
@@ -287,7 +277,7 @@ async-settle@^1.0.0:
287 dependencies: 277 dependencies:
288 async-done "^1.2.2" 278 async-done "^1.2.2"
289 279
290async@^1.2.1, async@^1.4.0: 280async@^1.4.0:
291 version "1.5.2" 281 version "1.5.2"
292 resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 282 resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
293 283
@@ -396,10 +386,6 @@ bootstrap@^3.3.5:
396 version "3.3.7" 386 version "3.3.7"
397 resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.3.7.tgz#5a389394549f23330875a3b150656574f8a9eb71" 387 resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.3.7.tgz#5a389394549f23330875a3b150656574f8a9eb71"
398 388
399bower@^1.4.1:
400 version "1.8.4"
401 resolved "https://registry.yarnpkg.com/bower/-/bower-1.8.4.tgz#e7876a076deb8137f7d06525dc5e8c66db82f28a"
402
403brace-expansion@^1.1.7: 389brace-expansion@^1.1.7:
404 version "1.1.11" 390 version "1.1.11"
405 resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 391 resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -407,14 +393,6 @@ brace-expansion@^1.1.7:
407 balanced-match "^1.0.0" 393 balanced-match "^1.0.0"
408 concat-map "0.0.1" 394 concat-map "0.0.1"
409 395
410braces@^1.8.2:
411 version "1.8.5"
412 resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
413 dependencies:
414 expand-range "^1.8.1"
415 preserve "^0.2.0"
416 repeat-element "^1.1.2"
417
418braces@^2.3.0, braces@^2.3.1: 396braces@^2.3.0, braces@^2.3.1:
419 version "2.3.2" 397 version "2.3.2"
420 resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 398 resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
@@ -460,12 +438,6 @@ cache-base@^1.0.1:
460 union-value "^1.0.0" 438 union-value "^1.0.0"
461 unset-value "^1.0.0" 439 unset-value "^1.0.0"
462 440
463caller-id@^0.1.0:
464 version "0.1.0"
465 resolved "https://registry.yarnpkg.com/caller-id/-/caller-id-0.1.0.tgz#59bdac0893d12c3871408279231f97458364f07b"
466 dependencies:
467 stack-trace "~0.0.7"
468
469callsite@1.0.0: 441callsite@1.0.0:
470 version "1.0.0" 442 version "1.0.0"
471 resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 443 resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
@@ -680,7 +652,7 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0:
680 version "1.1.0" 652 version "1.1.0"
681 resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 653 resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
682 654
683convert-source-map@^1.1.1, convert-source-map@^1.5.0: 655convert-source-map@^1.5.0:
684 version "1.5.1" 656 version "1.5.1"
685 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 657 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
686 658
@@ -883,7 +855,7 @@ duplexer@~0.1.1:
883 version "0.1.1" 855 version "0.1.1"
884 resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 856 resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
885 857
886duplexify@^3.2.0, duplexify@^3.6.0: 858duplexify@^3.6.0:
887 version "3.6.0" 859 version "3.6.0"
888 resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410" 860 resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410"
889 dependencies: 861 dependencies:
@@ -1026,12 +998,6 @@ event-stream@~3.0.20:
1026 stream-combiner "~0.0.3" 998 stream-combiner "~0.0.3"
1027 through "~2.3.1" 999 through "~2.3.1"
1028 1000
1029expand-brackets@^0.1.4:
1030 version "0.1.5"
1031 resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1032 dependencies:
1033 is-posix-bracket "^0.1.0"
1034
1035expand-brackets@^2.1.4: 1001expand-brackets@^2.1.4:
1036 version "2.1.4" 1002 version "2.1.4"
1037 resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1003 resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
@@ -1044,12 +1010,6 @@ expand-brackets@^2.1.4:
1044 snapdragon "^0.8.1" 1010 snapdragon "^0.8.1"
1045 to-regex "^3.0.1" 1011 to-regex "^3.0.1"
1046 1012
1047expand-range@^1.8.1:
1048 version "1.8.2"
1049 resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1050 dependencies:
1051 fill-range "^2.1.0"
1052
1053expand-tilde@^2.0.0, expand-tilde@^2.0.2: 1013expand-tilde@^2.0.0, expand-tilde@^2.0.2:
1054 version "2.0.2" 1014 version "2.0.2"
1055 resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 1015 resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
@@ -1075,20 +1035,10 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1075 assign-symbols "^1.0.0" 1035 assign-symbols "^1.0.0"
1076 is-extendable "^1.0.1" 1036 is-extendable "^1.0.1"
1077 1037
1078extend@^2.0.1:
1079 version "2.0.2"
1080 resolved "https://registry.yarnpkg.com/extend/-/extend-2.0.2.tgz#1b74985400171b85554894459c978de6ef453ab7"
1081
1082extend@^3.0.0, extend@~3.0.0: 1038extend@^3.0.0, extend@~3.0.0:
1083 version "3.0.2" 1039 version "3.0.2"
1084 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1040 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1085 1041
1086extglob@^0.3.1:
1087 version "0.3.2"
1088 resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1089 dependencies:
1090 is-extglob "^1.0.0"
1091
1092extglob@^2.0.4: 1042extglob@^2.0.4:
1093 version "2.0.4" 1043 version "2.0.4"
1094 resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1044 resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
@@ -1128,20 +1078,6 @@ file@0.2.2:
1128 version "0.2.2" 1078 version "0.2.2"
1129 resolved "https://registry.yarnpkg.com/file/-/file-0.2.2.tgz#c3dfd8f8cf3535ae455c2b423c2e52635d76b4d3" 1079 resolved "https://registry.yarnpkg.com/file/-/file-0.2.2.tgz#c3dfd8f8cf3535ae455c2b423c2e52635d76b4d3"
1130 1080
1131filename-regex@^2.0.0:
1132 version "2.0.1"
1133 resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1134
1135fill-range@^2.1.0:
1136 version "2.2.4"
1137 resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1138 dependencies:
1139 is-number "^2.1.0"
1140 isobject "^2.0.0"
1141 randomatic "^3.0.0"
1142 repeat-element "^1.1.2"
1143 repeat-string "^1.5.2"
1144
1145fill-range@^4.0.0: 1081fill-range@^4.0.0:
1146 version "4.0.0" 1082 version "4.0.0"
1147 resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1083 resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
@@ -1193,10 +1129,6 @@ fined@^1.0.1:
1193 object.pick "^1.2.0" 1129 object.pick "^1.2.0"
1194 parse-filepath "^1.0.1" 1130 parse-filepath "^1.0.1"
1195 1131
1196first-chunk-stream@^1.0.0:
1197 version "1.0.0"
1198 resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
1199
1200first-chunk-stream@^2.0.0: 1132first-chunk-stream@^2.0.0:
1201 version "2.0.0" 1133 version "2.0.0"
1202 resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70" 1134 resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
@@ -1222,12 +1154,6 @@ for-in@^1.0.1, for-in@^1.0.2:
1222 version "1.0.2" 1154 version "1.0.2"
1223 resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1155 resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1224 1156
1225for-own@^0.1.4:
1226 version "0.1.5"
1227 resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1228 dependencies:
1229 for-in "^1.0.1"
1230
1231for-own@^1.0.0: 1157for-own@^1.0.0:
1232 version "1.0.0" 1158 version "1.0.0"
1233 resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 1159 resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
@@ -1319,39 +1245,13 @@ getpass@^0.1.1:
1319 dependencies: 1245 dependencies:
1320 assert-plus "^1.0.0" 1246 assert-plus "^1.0.0"
1321 1247
1322glob-base@^0.3.0: 1248glob-parent@^3.1.0:
1323 version "0.3.0"
1324 resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1325 dependencies:
1326 glob-parent "^2.0.0"
1327 is-glob "^2.0.0"
1328
1329glob-parent@^2.0.0:
1330 version "2.0.0"
1331 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1332 dependencies:
1333 is-glob "^2.0.0"
1334
1335glob-parent@^3.0.0, glob-parent@^3.1.0:
1336 version "3.1.0" 1249 version "3.1.0"
1337 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1250 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1338 dependencies: 1251 dependencies:
1339 is-glob "^3.1.0" 1252 is-glob "^3.1.0"
1340 path-dirname "^1.0.0" 1253 path-dirname "^1.0.0"
1341 1254
1342glob-stream@^5.3.2:
1343 version "5.3.5"
1344 resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22"
1345 dependencies:
1346 extend "^3.0.0"
1347 glob "^5.0.3"
1348 glob-parent "^3.0.0"
1349 micromatch "^2.3.7"
1350 ordered-read-streams "^0.3.0"
1351 through2 "^0.6.0"
1352 to-absolute-glob "^0.1.1"
1353 unique-stream "^2.0.2"
1354
1355glob-stream@^6.1.0: 1255glob-stream@^6.1.0:
1356 version "6.1.0" 1256 version "6.1.0"
1357 resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" 1257 resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4"
@@ -1376,16 +1276,6 @@ glob-watcher@^5.0.0:
1376 just-debounce "^1.0.0" 1276 just-debounce "^1.0.0"
1377 object.defaults "^1.1.0" 1277 object.defaults "^1.1.0"
1378 1278
1379glob@^5.0.3:
1380 version "5.0.15"
1381 resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
1382 dependencies:
1383 inflight "^1.0.4"
1384 inherits "2"
1385 minimatch "2 || 3"
1386 once "^1.3.0"
1387 path-is-absolute "^1.0.0"
1388
1389glob@^7.0.5, glob@^7.1.1: 1279glob@^7.0.5, glob@^7.1.1:
1390 version "7.1.2" 1280 version "7.1.2"
1391 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1281 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
@@ -1415,15 +1305,6 @@ global-prefix@^1.0.1:
1415 is-windows "^1.0.1" 1305 is-windows "^1.0.1"
1416 which "^1.2.14" 1306 which "^1.2.14"
1417 1307
1418globby@^2.0.0:
1419 version "2.1.0"
1420 resolved "https://registry.yarnpkg.com/globby/-/globby-2.1.0.tgz#9e9192bcd33f4ab6a4f894e5e7ea8b713213c482"
1421 dependencies:
1422 array-union "^1.0.1"
1423 async "^1.2.1"
1424 glob "^5.0.3"
1425 object-assign "^3.0.0"
1426
1427glogg@^1.0.0: 1308glogg@^1.0.0:
1428 version "1.0.1" 1309 version "1.0.1"
1429 resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.1.tgz#dcf758e44789cc3f3d32c1f3562a3676e6a34810" 1310 resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.1.tgz#dcf758e44789cc3f3d32c1f3562a3676e6a34810"
@@ -1546,16 +1427,6 @@ gulp-rsync@^0.0.5:
1546 lodash.isstring "^2.4.1" 1427 lodash.isstring "^2.4.1"
1547 through2 "^0.6.1" 1428 through2 "^0.6.1"
1548 1429
1549gulp-sourcemaps@1.6.0:
1550 version "1.6.0"
1551 resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c"
1552 dependencies:
1553 convert-source-map "^1.1.1"
1554 graceful-fs "^4.1.2"
1555 strip-bom "^2.0.0"
1556 through2 "^2.0.0"
1557 vinyl "^1.0.0"
1558
1559gulp-util@^2.2.19: 1430gulp-util@^2.2.19:
1560 version "2.2.20" 1431 version "2.2.20"
1561 resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-2.2.20.tgz#d7146e5728910bd8f047a6b0b1e549bc22dbd64c" 1432 resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-2.2.20.tgz#d7146e5728910bd8f047a6b0b1e549bc22dbd64c"
@@ -1881,16 +1752,6 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1881 is-data-descriptor "^1.0.0" 1752 is-data-descriptor "^1.0.0"
1882 kind-of "^6.0.2" 1753 kind-of "^6.0.2"
1883 1754
1884is-dotfile@^1.0.0:
1885 version "1.0.3"
1886 resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1887
1888is-equal-shallow@^0.1.3:
1889 version "0.1.3"
1890 resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1891 dependencies:
1892 is-primitive "^2.0.0"
1893
1894is-extendable@^0.1.0, is-extendable@^0.1.1: 1755is-extendable@^0.1.0, is-extendable@^0.1.1:
1895 version "0.1.1" 1756 version "0.1.1"
1896 resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1757 resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
@@ -1901,10 +1762,6 @@ is-extendable@^1.0.1:
1901 dependencies: 1762 dependencies:
1902 is-plain-object "^2.0.4" 1763 is-plain-object "^2.0.4"
1903 1764
1904is-extglob@^1.0.0:
1905 version "1.0.0"
1906 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1907
1908is-extglob@^2.1.0, is-extglob@^2.1.1: 1765is-extglob@^2.1.0, is-extglob@^2.1.1:
1909 version "2.1.1" 1766 version "2.1.1"
1910 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1767 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -1925,12 +1782,6 @@ is-fullwidth-code-point@^2.0.0:
1925 version "2.0.0" 1782 version "2.0.0"
1926 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1783 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1927 1784
1928is-glob@^2.0.0, is-glob@^2.0.1:
1929 version "2.0.1"
1930 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1931 dependencies:
1932 is-extglob "^1.0.0"
1933
1934is-glob@^3.1.0: 1785is-glob@^3.1.0:
1935 version "3.1.0" 1786 version "3.1.0"
1936 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1787 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
@@ -1947,12 +1798,6 @@ is-negated-glob@^1.0.0:
1947 version "1.0.0" 1798 version "1.0.0"
1948 resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" 1799 resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2"
1949 1800
1950is-number@^2.1.0:
1951 version "2.1.0"
1952 resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1953 dependencies:
1954 kind-of "^3.0.2"
1955
1956is-number@^3.0.0: 1801is-number@^3.0.0:
1957 version "3.0.0" 1802 version "3.0.0"
1958 resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1803 resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
@@ -1969,24 +1814,12 @@ is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1969 dependencies: 1814 dependencies:
1970 isobject "^3.0.1" 1815 isobject "^3.0.1"
1971 1816
1972is-posix-bracket@^0.1.0:
1973 version "0.1.1"
1974 resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1975
1976is-primitive@^2.0.0:
1977 version "2.0.0"
1978 resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1979
1980is-relative@^1.0.0: 1817is-relative@^1.0.0:
1981 version "1.0.0" 1818 version "1.0.0"
1982 resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1819 resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
1983 dependencies: 1820 dependencies:
1984 is-unc-path "^1.0.0" 1821 is-unc-path "^1.0.0"
1985 1822
1986is-stream@^1.0.1:
1987 version "1.1.0"
1988 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1989
1990is-typedarray@~1.0.0: 1823is-typedarray@~1.0.0:
1991 version "1.0.0" 1824 version "1.0.0"
1992 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1825 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
@@ -2001,10 +1834,6 @@ is-utf8@^0.2.0, is-utf8@^0.2.1:
2001 version "0.2.1" 1834 version "0.2.1"
2002 resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1835 resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2003 1836
2004is-valid-glob@^0.3.0:
2005 version "0.3.0"
2006 resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe"
2007
2008is-valid-glob@^1.0.0: 1837is-valid-glob@^1.0.0:
2009 version "1.0.0" 1838 version "1.0.0"
2010 resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" 1839 resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa"
@@ -2416,10 +2245,6 @@ lodash.isarray@^3.0.0:
2416 version "3.0.4" 2245 version "3.0.4"
2417 resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2246 resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
2418 2247
2419lodash.isequal@^4.0.0:
2420 version "4.5.0"
2421 resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
2422
2423lodash.isfunction@~2.4.1: 2248lodash.isfunction@~2.4.1:
2424 version "2.4.1" 2249 version "2.4.1"
2425 resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1" 2250 resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1"
@@ -2570,18 +2395,6 @@ lru-cache@2:
2570 version "2.7.3" 2395 version "2.7.3"
2571 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2396 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952"
2572 2397
2573main-bower-files@^2.9.0:
2574 version "2.13.1"
2575 resolved "https://registry.yarnpkg.com/main-bower-files/-/main-bower-files-2.13.1.tgz#7e1bc5c498352ccecd5df087f13d5f31bc057d3e"
2576 dependencies:
2577 chalk "^1.0.0"
2578 extend "^2.0.1"
2579 globby "^2.0.0"
2580 multimatch "^2.0.0"
2581 path-exists "^1.0.0"
2582 strip-json-comments "^1.0.2"
2583 vinyl-fs "^2.4.3"
2584
2585make-iterator@^1.0.0: 2398make-iterator@^1.0.0:
2586 version "1.0.1" 2399 version "1.0.1"
2587 resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" 2400 resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6"
@@ -2619,10 +2432,6 @@ matchdep@^2.0.0:
2619 resolve "^1.4.0" 2432 resolve "^1.4.0"
2620 stack-trace "0.0.10" 2433 stack-trace "0.0.10"
2621 2434
2622math-random@^1.0.1:
2623 version "1.0.1"
2624 resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
2625
2626media-typer@0.3.0: 2435media-typer@0.3.0:
2627 version "0.3.0" 2436 version "0.3.0"
2628 resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2437 resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
@@ -2650,30 +2459,6 @@ meow@^3.3.0:
2650 redent "^1.0.0" 2459 redent "^1.0.0"
2651 trim-newlines "^1.0.0" 2460 trim-newlines "^1.0.0"
2652 2461
2653merge-stream@^1.0.0:
2654 version "1.0.1"
2655 resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2656 dependencies:
2657 readable-stream "^2.0.1"
2658
2659micromatch@^2.3.7:
2660 version "2.3.11"
2661 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2662 dependencies:
2663 arr-diff "^2.0.0"
2664 array-unique "^0.2.1"
2665 braces "^1.8.2"
2666 expand-brackets "^0.1.4"
2667 extglob "^0.3.1"
2668 filename-regex "^2.0.0"
2669 is-extglob "^1.0.0"
2670 is-glob "^2.0.1"
2671 kind-of "^3.0.2"
2672 normalize-path "^2.0.1"
2673 object.omit "^2.0.0"
2674 parse-glob "^3.0.4"
2675 regex-cache "^0.4.2"
2676
2677micromatch@^3.0.4, micromatch@^3.1.4: 2462micromatch@^3.0.4, micromatch@^3.1.4:
2678 version "3.1.10" 2463 version "3.1.10"
2679 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2464 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
@@ -2720,12 +2505,6 @@ mime@^1.2.11:
2720 version "1.6.0" 2505 version "1.6.0"
2721 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2506 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
2722 2507
2723"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2724 version "3.0.4"
2725 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2726 dependencies:
2727 brace-expansion "^1.1.7"
2728
2729minimatch@^1.0.0: 2508minimatch@^1.0.0:
2730 version "1.0.0" 2509 version "1.0.0"
2731 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-1.0.0.tgz#e0dd2120b49e1b724ce8d714c520822a9438576d" 2510 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-1.0.0.tgz#e0dd2120b49e1b724ce8d714c520822a9438576d"
@@ -2733,6 +2512,12 @@ minimatch@^1.0.0:
2733 lru-cache "2" 2512 lru-cache "2"
2734 sigmund "~1.0.0" 2513 sigmund "~1.0.0"
2735 2514
2515minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2516 version "3.0.4"
2517 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2518 dependencies:
2519 brace-expansion "^1.1.7"
2520
2736minimist@0.0.8: 2521minimist@0.0.8:
2737 version "0.0.8" 2522 version "0.0.8"
2738 resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2523 resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
@@ -2892,7 +2677,7 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2892 semver "2 || 3 || 4 || 5" 2677 semver "2 || 3 || 4 || 5"
2893 validate-npm-package-license "^3.0.1" 2678 validate-npm-package-license "^3.0.1"
2894 2679
2895normalize-path@^2.0.1, normalize-path@^2.1.1: 2680normalize-path@^2.1.1:
2896 version "2.1.1" 2681 version "2.1.1"
2897 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2682 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2898 dependencies: 2683 dependencies:
@@ -2915,13 +2700,6 @@ npm-packlist@^1.1.6:
2915 ignore-walk "^3.0.1" 2700 ignore-walk "^3.0.1"
2916 npm-bundled "^1.0.1" 2701 npm-bundled "^1.0.1"
2917 2702
2918npmfiles@^0.1.1:
2919 version "0.1.1"
2920 resolved "https://registry.yarnpkg.com/npmfiles/-/npmfiles-0.1.1.tgz#081f51f98c9a4d488e6e15acc5989870c94db77b"
2921 dependencies:
2922 caller-id "^0.1.0"
2923 glob "^7.1.1"
2924
2925npmlog@^4.0.2: 2703npmlog@^4.0.2:
2926 version "4.1.2" 2704 version "4.1.2"
2927 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2705 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
@@ -2949,7 +2727,7 @@ object-assign@^3.0.0:
2949 version "3.0.0" 2727 version "3.0.0"
2950 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2728 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2"
2951 2729
2952object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: 2730object-assign@^4.0.1, object-assign@^4.1.0:
2953 version "4.1.1" 2731 version "4.1.1"
2954 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2732 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2955 2733
@@ -2996,13 +2774,6 @@ object.map@^1.0.0:
2996 for-own "^1.0.0" 2774 for-own "^1.0.0"
2997 make-iterator "^1.0.0" 2775 make-iterator "^1.0.0"
2998 2776
2999object.omit@^2.0.0:
3000 version "2.0.1"
3001 resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
3002 dependencies:
3003 for-own "^0.1.4"
3004 is-extendable "^0.1.1"
3005
3006object.pick@^1.2.0, object.pick@^1.3.0: 2777object.pick@^1.2.0, object.pick@^1.3.0:
3007 version "1.3.0" 2778 version "1.3.0"
3008 resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2779 resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
@@ -3045,13 +2816,6 @@ optimist@^0.6.1:
3045 minimist "~0.0.1" 2816 minimist "~0.0.1"
3046 wordwrap "~0.0.2" 2817 wordwrap "~0.0.2"
3047 2818
3048ordered-read-streams@^0.3.0:
3049 version "0.3.0"
3050 resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b"
3051 dependencies:
3052 is-stream "^1.0.1"
3053 readable-stream "^2.0.1"
3054
3055ordered-read-streams@^1.0.0: 2819ordered-read-streams@^1.0.0:
3056 version "1.0.1" 2820 version "1.0.1"
3057 resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" 2821 resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e"
@@ -3087,15 +2851,6 @@ parse-filepath@^1.0.1:
3087 map-cache "^0.2.0" 2851 map-cache "^0.2.0"
3088 path-root "^0.1.1" 2852 path-root "^0.1.1"
3089 2853
3090parse-glob@^3.0.4:
3091 version "3.0.4"
3092 resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3093 dependencies:
3094 glob-base "^0.3.0"
3095 is-dotfile "^1.0.0"
3096 is-extglob "^1.0.0"
3097 is-glob "^2.0.0"
3098
3099parse-json@^2.2.0: 2854parse-json@^2.2.0:
3100 version "2.2.0" 2855 version "2.2.0"
3101 resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2856 resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
@@ -3118,10 +2873,6 @@ path-dirname@^1.0.0:
3118 version "1.0.2" 2873 version "1.0.2"
3119 resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2874 resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
3120 2875
3121path-exists@^1.0.0:
3122 version "1.0.0"
3123 resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081"
3124
3125path-exists@^2.0.0: 2876path-exists@^2.0.0:
3126 version "2.1.0" 2877 version "2.1.0"
3127 resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2878 resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
@@ -3192,10 +2943,6 @@ posix-character-classes@^0.1.0:
3192 version "0.1.1" 2943 version "0.1.1"
3193 resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2944 resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
3194 2945
3195preserve@^0.2.0:
3196 version "0.2.0"
3197 resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3198
3199pretty-hrtime@^1.0.0: 2946pretty-hrtime@^1.0.0:
3200 version "1.0.3" 2947 version "1.0.3"
3201 resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2948 resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
@@ -3253,14 +3000,6 @@ qs@~6.4.0:
3253 version "6.4.0" 3000 version "6.4.0"
3254 resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3001 resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
3255 3002
3256randomatic@^3.0.0:
3257 version "3.1.0"
3258 resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116"
3259 dependencies:
3260 is-number "^4.0.0"
3261 kind-of "^6.0.0"
3262 math-random "^1.0.1"
3263
3264range-parser@~1.2.0: 3003range-parser@~1.2.0:
3265 version "1.2.0" 3004 version "1.2.0"
3266 resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3005 resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
@@ -3357,12 +3096,6 @@ redent@^1.0.0:
3357 indent-string "^2.1.0" 3096 indent-string "^2.1.0"
3358 strip-indent "^1.0.1" 3097 strip-indent "^1.0.1"
3359 3098
3360regex-cache@^0.4.2:
3361 version "0.4.4"
3362 resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3363 dependencies:
3364 is-equal-shallow "^0.1.3"
3365
3366regex-not@^1.0.0, regex-not@^1.0.2: 3099regex-not@^1.0.0, regex-not@^1.0.2:
3367 version "1.0.2" 3100 version "1.0.2"
3368 resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3101 resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
@@ -3733,7 +3466,7 @@ sshpk@^1.7.0:
3733 jsbn "~0.1.0" 3466 jsbn "~0.1.0"
3734 tweetnacl "~0.14.0" 3467 tweetnacl "~0.14.0"
3735 3468
3736stack-trace@0.0.10, stack-trace@~0.0.7: 3469stack-trace@0.0.10:
3737 version "0.0.10" 3470 version "0.0.10"
3738 resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 3471 resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
3739 3472
@@ -3836,13 +3569,6 @@ strip-bom-buf@^1.0.0:
3836 dependencies: 3569 dependencies:
3837 is-utf8 "^0.2.1" 3570 is-utf8 "^0.2.1"
3838 3571
3839strip-bom-stream@^1.0.0:
3840 version "1.0.0"
3841 resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee"
3842 dependencies:
3843 first-chunk-stream "^1.0.0"
3844 strip-bom "^2.0.0"
3845
3846strip-bom-stream@^3.0.0: 3572strip-bom-stream@^3.0.0:
3847 version "3.0.0" 3573 version "3.0.0"
3848 resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz#956bcc5d84430f69256a90ed823765cd858e159c" 3574 resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz#956bcc5d84430f69256a90ed823765cd858e159c"
@@ -3862,10 +3588,6 @@ strip-indent@^1.0.1:
3862 dependencies: 3588 dependencies:
3863 get-stdin "^4.0.1" 3589 get-stdin "^4.0.1"
3864 3590
3865strip-json-comments@^1.0.2:
3866 version "1.0.4"
3867 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
3868
3869strip-json-comments@~2.0.1: 3591strip-json-comments@~2.0.1:
3870 version "2.0.1" 3592 version "2.0.1"
3871 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3593 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
@@ -3911,7 +3633,7 @@ through2@^0.5.0, through2@^0.5.1:
3911 readable-stream "~1.0.17" 3633 readable-stream "~1.0.17"
3912 xtend "~3.0.0" 3634 xtend "~3.0.0"
3913 3635
3914through2@^0.6.0, through2@^0.6.1, through2@^0.6.3, through2@~0.6.2: 3636through2@^0.6.1, through2@^0.6.3, through2@~0.6.2:
3915 version "0.6.5" 3637 version "0.6.5"
3916 resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3638 resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48"
3917 dependencies: 3639 dependencies:
@@ -3943,12 +3665,6 @@ tiny-lr@0.1.4:
3943 parseurl "~1.3.0" 3665 parseurl "~1.3.0"
3944 qs "~2.2.3" 3666 qs "~2.2.3"
3945 3667
3946to-absolute-glob@^0.1.1:
3947 version "0.1.1"
3948 resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f"
3949 dependencies:
3950 extend-shallow "^2.0.1"
3951
3952to-absolute-glob@^2.0.0: 3668to-absolute-glob@^2.0.0:
3953 version "2.0.2" 3669 version "2.0.2"
3954 resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" 3670 resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b"
@@ -4119,10 +3835,6 @@ v8flags@^3.0.1:
4119 dependencies: 3835 dependencies:
4120 homedir-polyfill "^1.0.1" 3836 homedir-polyfill "^1.0.1"
4121 3837
4122vali-date@^1.0.0:
4123 version "1.0.0"
4124 resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6"
4125
4126validate-npm-package-license@^3.0.1: 3838validate-npm-package-license@^3.0.1:
4127 version "3.0.4" 3839 version "3.0.4"
4128 resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3840 resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
@@ -4142,28 +3854,6 @@ verror@1.10.0:
4142 core-util-is "1.0.2" 3854 core-util-is "1.0.2"
4143 extsprintf "^1.2.0" 3855 extsprintf "^1.2.0"
4144 3856
4145vinyl-fs@^2.4.3:
4146 version "2.4.4"
4147 resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239"
4148 dependencies:
4149 duplexify "^3.2.0"
4150 glob-stream "^5.3.2"
4151 graceful-fs "^4.0.0"
4152 gulp-sourcemaps "1.6.0"
4153 is-valid-glob "^0.3.0"
4154 lazystream "^1.0.0"
4155 lodash.isequal "^4.0.0"
4156 merge-stream "^1.0.0"
4157 mkdirp "^0.5.0"
4158 object-assign "^4.0.0"
4159 readable-stream "^2.0.4"
4160 strip-bom "^2.0.0"
4161 strip-bom-stream "^1.0.0"
4162 through2 "^2.0.0"
4163 through2-filter "^2.0.0"
4164 vali-date "^1.0.0"
4165 vinyl "^1.0.0"
4166
4167vinyl-fs@^3.0.0: 3857vinyl-fs@^3.0.0:
4168 version "3.0.3" 3858 version "3.0.3"
4169 resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" 3859 resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7"
@@ -4218,14 +3908,6 @@ vinyl@^0.5.0:
4218 clone-stats "^0.0.1" 3908 clone-stats "^0.0.1"
4219 replace-ext "0.0.1" 3909 replace-ext "0.0.1"
4220 3910
4221vinyl@^1.0.0:
4222 version "1.2.0"
4223 resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
4224 dependencies:
4225 clone "^1.0.0"
4226 clone-stats "^0.0.1"
4227 replace-ext "0.0.1"
4228
4229vinyl@^2.0.0, vinyl@^2.0.1: 3911vinyl@^2.0.0, vinyl@^2.0.1:
4230 version "2.2.0" 3912 version "2.2.0"
4231 resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" 3913 resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86"