eoapi-cdk 5.4.1 → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1276) hide show
  1. package/.jsii +360 -831
  2. package/CHANGELOG.md +19 -0
  3. package/lib/bastion-host/index.js +1 -1
  4. package/lib/{bootstrapper/runtime → database/bootstrapper_runtime}/Dockerfile +5 -3
  5. package/lib/database/index.d.ts +34 -5
  6. package/lib/database/index.js +66 -12
  7. package/lib/index.d.ts +1 -1
  8. package/lib/index.js +2 -2
  9. package/lib/ingestor-api/index.d.ts +15 -43
  10. package/lib/ingestor-api/index.js +40 -28
  11. package/lib/ingestor-api/runtime/Dockerfile +16 -0
  12. package/lib/ingestor-api/runtime/requirements.txt +2 -2
  13. package/lib/ingestor-api/runtime/src/handler.py +1 -1
  14. package/lib/ingestor-api/runtime/src/main.py +8 -0
  15. package/lib/stac-api/index.d.ts +10 -24
  16. package/lib/stac-api/index.js +24 -28
  17. package/lib/stac-api/runtime/Dockerfile +13 -0
  18. package/lib/stac-api/runtime/requirements.txt +0 -1
  19. package/lib/stac-browser/index.js +1 -1
  20. package/lib/tipg-api/index.d.ts +9 -23
  21. package/lib/tipg-api/index.js +22 -18
  22. package/lib/tipg-api/runtime/Dockerfile +17 -0
  23. package/lib/tipg-api/runtime/src/handler.py +1 -1
  24. package/lib/titiler-pgstac-api/index.d.ts +6 -39
  25. package/lib/titiler-pgstac-api/index.js +20 -18
  26. package/lib/titiler-pgstac-api/runtime/Dockerfile +19 -0
  27. package/lib/titiler-pgstac-api/runtime/requirements.txt +1 -2
  28. package/lib/titiler-pgstac-api/runtime/src/handler.py +1 -1
  29. package/lib/utils/index.d.ts +2 -0
  30. package/lib/utils/index.js +3 -0
  31. package/node_modules/@gulp-sourcemaps/map-sources/LICENSE +21 -0
  32. package/node_modules/@gulp-sourcemaps/map-sources/README.md +52 -0
  33. package/node_modules/@gulp-sourcemaps/map-sources/index.js +30 -0
  34. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/normalize-path/LICENSE +21 -0
  35. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/normalize-path/README.md +92 -0
  36. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/normalize-path/index.js +19 -0
  37. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/normalize-path/package.json +78 -0
  38. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/through2/LICENSE.md +9 -0
  39. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/through2/README.md +134 -0
  40. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/through2/package.json +33 -0
  41. package/node_modules/@gulp-sourcemaps/map-sources/node_modules/through2/through2.js +96 -0
  42. package/node_modules/@gulp-sourcemaps/map-sources/package.json +47 -0
  43. package/node_modules/acorn/.npmignore +10 -0
  44. package/node_modules/acorn/AUTHORS +62 -0
  45. package/node_modules/acorn/CHANGELOG.md +286 -0
  46. package/node_modules/acorn/LICENSE +19 -0
  47. package/node_modules/acorn/README.md +409 -0
  48. package/node_modules/acorn/bin/acorn +67 -0
  49. package/node_modules/acorn/dist/.keep +0 -0
  50. package/node_modules/acorn/dist/acorn.es.js +3401 -0
  51. package/node_modules/acorn/dist/acorn.js +3433 -0
  52. package/node_modules/acorn/dist/acorn_loose.es.js +1364 -0
  53. package/node_modules/acorn/dist/acorn_loose.js +1374 -0
  54. package/node_modules/acorn/dist/walk.es.js +342 -0
  55. package/node_modules/acorn/dist/walk.js +360 -0
  56. package/node_modules/acorn/package.json +46 -0
  57. package/node_modules/acorn/src/bin/acorn.js +60 -0
  58. package/node_modules/acorn/src/expression.js +819 -0
  59. package/node_modules/acorn/src/identifier.js +81 -0
  60. package/node_modules/acorn/src/index.js +77 -0
  61. package/node_modules/acorn/src/location.js +26 -0
  62. package/node_modules/acorn/src/locutil.js +42 -0
  63. package/node_modules/acorn/src/loose/expression.js +562 -0
  64. package/node_modules/acorn/src/loose/index.js +48 -0
  65. package/node_modules/acorn/src/loose/parseutil.js +1 -0
  66. package/node_modules/acorn/src/loose/state.js +161 -0
  67. package/node_modules/acorn/src/loose/statement.js +450 -0
  68. package/node_modules/acorn/src/loose/tokenize.js +108 -0
  69. package/node_modules/acorn/src/lval.js +219 -0
  70. package/node_modules/acorn/src/node.js +50 -0
  71. package/node_modules/acorn/src/options.js +128 -0
  72. package/node_modules/acorn/src/parseutil.js +128 -0
  73. package/node_modules/acorn/src/state.js +111 -0
  74. package/node_modules/acorn/src/statement.js +744 -0
  75. package/node_modules/acorn/src/tokencontext.js +110 -0
  76. package/node_modules/acorn/src/tokenize.js +686 -0
  77. package/node_modules/acorn/src/tokentype.js +147 -0
  78. package/node_modules/acorn/src/util.js +9 -0
  79. package/node_modules/acorn/src/walk/index.js +342 -0
  80. package/node_modules/acorn/src/whitespace.js +13 -0
  81. package/node_modules/arr-diff/LICENSE +21 -0
  82. package/node_modules/arr-diff/README.md +74 -0
  83. package/node_modules/arr-diff/index.js +58 -0
  84. package/node_modules/arr-diff/package.json +49 -0
  85. package/node_modules/arr-flatten/LICENSE +21 -0
  86. package/node_modules/arr-flatten/README.md +86 -0
  87. package/node_modules/arr-flatten/index.js +22 -0
  88. package/node_modules/arr-flatten/package.json +76 -0
  89. package/node_modules/array-unique/LICENSE +21 -0
  90. package/node_modules/array-unique/README.md +51 -0
  91. package/node_modules/array-unique/index.js +28 -0
  92. package/node_modules/array-unique/package.json +37 -0
  93. package/node_modules/atob/LICENSE +230 -0
  94. package/node_modules/atob/LICENSE.DOCS +319 -0
  95. package/node_modules/atob/README.md +49 -0
  96. package/node_modules/atob/bin/atob.js +6 -0
  97. package/node_modules/atob/bower.json +24 -0
  98. package/node_modules/atob/browser-atob.js +44 -0
  99. package/node_modules/atob/node-atob.js +7 -0
  100. package/node_modules/atob/package.json +24 -0
  101. package/node_modules/atob/test.js +18 -0
  102. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  103. package/node_modules/balanced-match/LICENSE.md +21 -0
  104. package/node_modules/balanced-match/README.md +97 -0
  105. package/node_modules/balanced-match/index.js +62 -0
  106. package/node_modules/balanced-match/package.json +48 -0
  107. package/node_modules/brace-expansion/LICENSE +21 -0
  108. package/node_modules/brace-expansion/README.md +129 -0
  109. package/node_modules/brace-expansion/index.js +201 -0
  110. package/node_modules/brace-expansion/package.json +47 -0
  111. package/node_modules/clone-stats/LICENSE.md +21 -0
  112. package/node_modules/clone-stats/README.md +17 -0
  113. package/node_modules/clone-stats/index.js +13 -0
  114. package/node_modules/clone-stats/package.json +31 -0
  115. package/node_modules/clone-stats/test.js +36 -0
  116. package/node_modules/code-point-at/index.js +32 -0
  117. package/node_modules/code-point-at/license +21 -0
  118. package/node_modules/code-point-at/package.json +38 -0
  119. package/node_modules/code-point-at/readme.md +32 -0
  120. package/node_modules/concat-map/.travis.yml +4 -0
  121. package/node_modules/concat-map/LICENSE +18 -0
  122. package/node_modules/concat-map/README.markdown +62 -0
  123. package/node_modules/concat-map/example/map.js +6 -0
  124. package/node_modules/concat-map/index.js +13 -0
  125. package/node_modules/concat-map/package.json +43 -0
  126. package/node_modules/concat-map/test/map.js +39 -0
  127. package/node_modules/convert-source-map/LICENSE +23 -0
  128. package/node_modules/convert-source-map/README.md +123 -0
  129. package/node_modules/convert-source-map/index.js +179 -0
  130. package/node_modules/convert-source-map/package.json +41 -0
  131. package/node_modules/core-util-is/LICENSE +19 -0
  132. package/node_modules/core-util-is/README.md +3 -0
  133. package/node_modules/core-util-is/lib/util.js +107 -0
  134. package/node_modules/core-util-is/package.json +38 -0
  135. package/node_modules/css/History.md +75 -0
  136. package/node_modules/css/LICENSE +9 -0
  137. package/node_modules/css/Readme.md +314 -0
  138. package/node_modules/css/index.js +2 -0
  139. package/node_modules/css/lib/parse/index.js +603 -0
  140. package/node_modules/css/lib/stringify/compiler.js +50 -0
  141. package/node_modules/css/lib/stringify/compress.js +199 -0
  142. package/node_modules/css/lib/stringify/identity.js +254 -0
  143. package/node_modules/css/lib/stringify/index.js +47 -0
  144. package/node_modules/css/lib/stringify/source-map-support.js +126 -0
  145. package/node_modules/css/package.json +39 -0
  146. package/node_modules/debug-fabulous/LICENSE +21 -0
  147. package/node_modules/debug-fabulous/README.md +29 -0
  148. package/node_modules/debug-fabulous/index.js +11 -0
  149. package/node_modules/debug-fabulous/node_modules/debug/.coveralls.yml +1 -0
  150. package/node_modules/debug-fabulous/node_modules/debug/.eslintrc +11 -0
  151. package/node_modules/debug-fabulous/node_modules/debug/.npmignore +9 -0
  152. package/node_modules/debug-fabulous/node_modules/debug/.travis.yml +14 -0
  153. package/node_modules/debug-fabulous/node_modules/debug/CHANGELOG.md +362 -0
  154. package/node_modules/debug-fabulous/node_modules/debug/LICENSE +19 -0
  155. package/node_modules/debug-fabulous/node_modules/debug/Makefile +50 -0
  156. package/node_modules/debug-fabulous/node_modules/debug/README.md +312 -0
  157. package/node_modules/debug-fabulous/node_modules/debug/component.json +19 -0
  158. package/node_modules/debug-fabulous/node_modules/debug/karma.conf.js +70 -0
  159. package/node_modules/debug-fabulous/node_modules/debug/node.js +1 -0
  160. package/node_modules/debug-fabulous/node_modules/debug/package.json +49 -0
  161. package/node_modules/debug-fabulous/node_modules/debug/src/browser.js +185 -0
  162. package/node_modules/debug-fabulous/node_modules/debug/src/debug.js +202 -0
  163. package/node_modules/debug-fabulous/node_modules/debug/src/index.js +10 -0
  164. package/node_modules/debug-fabulous/node_modules/debug/src/inspector-log.js +15 -0
  165. package/node_modules/debug-fabulous/node_modules/debug/src/node.js +248 -0
  166. package/node_modules/debug-fabulous/node_modules/ms/index.js +152 -0
  167. package/node_modules/debug-fabulous/node_modules/ms/license.md +21 -0
  168. package/node_modules/debug-fabulous/node_modules/ms/package.json +37 -0
  169. package/node_modules/debug-fabulous/node_modules/ms/readme.md +51 -0
  170. package/node_modules/debug-fabulous/node_modules/object-assign/index.js +83 -0
  171. package/node_modules/debug-fabulous/node_modules/object-assign/license +21 -0
  172. package/node_modules/debug-fabulous/node_modules/object-assign/package.json +42 -0
  173. package/node_modules/debug-fabulous/node_modules/object-assign/readme.md +56 -0
  174. package/node_modules/debug-fabulous/package.json +32 -0
  175. package/node_modules/debug-fabulous/src/lazy-debug.js +9 -0
  176. package/node_modules/debug-fabulous/src/lazy-eval.js +50 -0
  177. package/node_modules/decode-uri-component/index.js +94 -0
  178. package/node_modules/decode-uri-component/license +9 -0
  179. package/node_modules/decode-uri-component/package.json +37 -0
  180. package/node_modules/decode-uri-component/readme.md +83 -0
  181. package/node_modules/detect-newline/index.js +24 -0
  182. package/node_modules/detect-newline/license +21 -0
  183. package/node_modules/detect-newline/package.json +37 -0
  184. package/node_modules/detect-newline/readme.md +42 -0
  185. package/node_modules/duplexify/.travis.yml +6 -0
  186. package/node_modules/duplexify/LICENSE +21 -0
  187. package/node_modules/duplexify/README.md +97 -0
  188. package/node_modules/duplexify/example.js +21 -0
  189. package/node_modules/duplexify/index.js +234 -0
  190. package/node_modules/duplexify/package.json +39 -0
  191. package/node_modules/duplexify/test.js +295 -0
  192. package/node_modules/end-of-stream/LICENSE +21 -0
  193. package/node_modules/end-of-stream/README.md +54 -0
  194. package/node_modules/end-of-stream/index.js +94 -0
  195. package/node_modules/end-of-stream/package.json +37 -0
  196. package/node_modules/error-ex/LICENSE +21 -0
  197. package/node_modules/error-ex/README.md +144 -0
  198. package/node_modules/error-ex/index.js +141 -0
  199. package/node_modules/error-ex/package.json +46 -0
  200. package/node_modules/expand-brackets/LICENSE +21 -0
  201. package/node_modules/expand-brackets/README.md +107 -0
  202. package/node_modules/expand-brackets/index.js +163 -0
  203. package/node_modules/expand-brackets/package.json +62 -0
  204. package/node_modules/expand-range/LICENSE +24 -0
  205. package/node_modules/expand-range/README.md +145 -0
  206. package/node_modules/expand-range/index.js +43 -0
  207. package/node_modules/expand-range/node_modules/fill-range/LICENSE +21 -0
  208. package/node_modules/expand-range/node_modules/fill-range/README.md +317 -0
  209. package/node_modules/expand-range/node_modules/fill-range/index.js +408 -0
  210. package/node_modules/expand-range/node_modules/fill-range/package.json +78 -0
  211. package/node_modules/expand-range/node_modules/is-number/LICENSE +21 -0
  212. package/node_modules/expand-range/node_modules/is-number/README.md +103 -0
  213. package/node_modules/expand-range/node_modules/is-number/index.js +19 -0
  214. package/node_modules/expand-range/node_modules/is-number/package.json +59 -0
  215. package/node_modules/expand-range/node_modules/kind-of/LICENSE +21 -0
  216. package/node_modules/expand-range/node_modules/kind-of/README.md +261 -0
  217. package/node_modules/expand-range/node_modules/kind-of/index.js +116 -0
  218. package/node_modules/expand-range/node_modules/kind-of/package.json +90 -0
  219. package/node_modules/expand-range/package.json +73 -0
  220. package/node_modules/extend/.editorconfig +20 -0
  221. package/node_modules/extend/.eslintrc +17 -0
  222. package/node_modules/extend/.jscs.json +175 -0
  223. package/node_modules/extend/.travis.yml +230 -0
  224. package/node_modules/extend/CHANGELOG.md +83 -0
  225. package/node_modules/extend/LICENSE +23 -0
  226. package/node_modules/extend/README.md +81 -0
  227. package/node_modules/extend/component.json +32 -0
  228. package/node_modules/extend/index.js +117 -0
  229. package/node_modules/extend/package.json +42 -0
  230. package/node_modules/extend-shallow/LICENSE +21 -0
  231. package/node_modules/extend-shallow/README.md +61 -0
  232. package/node_modules/extend-shallow/index.js +33 -0
  233. package/node_modules/extend-shallow/package.json +56 -0
  234. package/node_modules/extglob/LICENSE +21 -0
  235. package/node_modules/extglob/README.md +88 -0
  236. package/node_modules/extglob/index.js +178 -0
  237. package/node_modules/extglob/node_modules/is-extglob/LICENSE +21 -0
  238. package/node_modules/extglob/node_modules/is-extglob/README.md +75 -0
  239. package/node_modules/extglob/node_modules/is-extglob/index.js +11 -0
  240. package/node_modules/extglob/node_modules/is-extglob/package.json +48 -0
  241. package/node_modules/extglob/package.json +60 -0
  242. package/node_modules/filename-regex/LICENSE +21 -0
  243. package/node_modules/filename-regex/README.md +63 -0
  244. package/node_modules/filename-regex/index.js +10 -0
  245. package/node_modules/filename-regex/package.json +50 -0
  246. package/node_modules/first-chunk-stream/index.js +93 -0
  247. package/node_modules/first-chunk-stream/package.json +36 -0
  248. package/node_modules/first-chunk-stream/readme.md +62 -0
  249. package/node_modules/for-in/LICENSE +21 -0
  250. package/node_modules/for-in/README.md +85 -0
  251. package/node_modules/for-in/index.js +16 -0
  252. package/node_modules/for-in/package.json +68 -0
  253. package/node_modules/for-own/LICENSE +21 -0
  254. package/node_modules/for-own/README.md +85 -0
  255. package/node_modules/for-own/index.js +19 -0
  256. package/node_modules/for-own/package.json +70 -0
  257. package/node_modules/function-bind/.editorconfig +20 -0
  258. package/node_modules/function-bind/.eslintrc +15 -0
  259. package/node_modules/function-bind/.jscs.json +176 -0
  260. package/node_modules/function-bind/.npmignore +22 -0
  261. package/node_modules/function-bind/.travis.yml +168 -0
  262. package/node_modules/function-bind/LICENSE +20 -0
  263. package/node_modules/function-bind/README.md +48 -0
  264. package/node_modules/function-bind/implementation.js +52 -0
  265. package/node_modules/function-bind/index.js +5 -0
  266. package/node_modules/function-bind/package.json +63 -0
  267. package/node_modules/function-bind/test/.eslintrc +9 -0
  268. package/node_modules/function-bind/test/index.js +252 -0
  269. package/node_modules/glob-base/LICENSE +21 -0
  270. package/node_modules/glob-base/README.md +158 -0
  271. package/node_modules/glob-base/index.js +51 -0
  272. package/node_modules/glob-base/node_modules/glob-parent/.npmignore +4 -0
  273. package/node_modules/glob-base/node_modules/glob-parent/.travis.yml +8 -0
  274. package/node_modules/glob-base/node_modules/glob-parent/LICENSE +15 -0
  275. package/node_modules/glob-base/node_modules/glob-parent/README.md +43 -0
  276. package/node_modules/glob-base/node_modules/glob-parent/index.js +10 -0
  277. package/node_modules/glob-base/node_modules/glob-parent/package.json +35 -0
  278. package/node_modules/glob-base/node_modules/glob-parent/test.js +28 -0
  279. package/node_modules/glob-base/node_modules/is-extglob/LICENSE +21 -0
  280. package/node_modules/glob-base/node_modules/is-extglob/README.md +75 -0
  281. package/node_modules/glob-base/node_modules/is-extglob/index.js +11 -0
  282. package/node_modules/glob-base/node_modules/is-extglob/package.json +48 -0
  283. package/node_modules/glob-base/node_modules/is-glob/LICENSE +21 -0
  284. package/node_modules/glob-base/node_modules/is-glob/README.md +105 -0
  285. package/node_modules/glob-base/node_modules/is-glob/index.js +14 -0
  286. package/node_modules/glob-base/node_modules/is-glob/package.json +60 -0
  287. package/node_modules/glob-base/package.json +52 -0
  288. package/node_modules/glob-stream/LICENSE +21 -0
  289. package/node_modules/glob-stream/README.md +95 -0
  290. package/node_modules/glob-stream/index.js +209 -0
  291. package/node_modules/glob-stream/node_modules/braces/LICENSE +21 -0
  292. package/node_modules/glob-stream/node_modules/braces/README.md +248 -0
  293. package/node_modules/glob-stream/node_modules/braces/index.js +399 -0
  294. package/node_modules/glob-stream/node_modules/braces/package.json +83 -0
  295. package/node_modules/glob-stream/node_modules/glob/LICENSE +15 -0
  296. package/node_modules/glob-stream/node_modules/glob/README.md +377 -0
  297. package/node_modules/glob-stream/node_modules/glob/common.js +245 -0
  298. package/node_modules/glob-stream/node_modules/glob/glob.js +752 -0
  299. package/node_modules/glob-stream/node_modules/glob/package.json +42 -0
  300. package/node_modules/glob-stream/node_modules/glob/sync.js +460 -0
  301. package/node_modules/glob-stream/node_modules/glob-parent/LICENSE +15 -0
  302. package/node_modules/glob-stream/node_modules/glob-parent/README.md +109 -0
  303. package/node_modules/glob-stream/node_modules/glob-parent/index.js +24 -0
  304. package/node_modules/glob-stream/node_modules/glob-parent/package.json +42 -0
  305. package/node_modules/glob-stream/node_modules/is-glob/LICENSE +21 -0
  306. package/node_modules/glob-stream/node_modules/is-glob/README.md +142 -0
  307. package/node_modules/glob-stream/node_modules/is-glob/index.js +25 -0
  308. package/node_modules/glob-stream/node_modules/is-glob/package.json +80 -0
  309. package/node_modules/glob-stream/node_modules/isarray/README.md +54 -0
  310. package/node_modules/glob-stream/node_modules/isarray/build/build.js +209 -0
  311. package/node_modules/glob-stream/node_modules/isarray/component.json +19 -0
  312. package/node_modules/glob-stream/node_modules/isarray/index.js +3 -0
  313. package/node_modules/glob-stream/node_modules/isarray/package.json +25 -0
  314. package/node_modules/glob-stream/node_modules/kind-of/LICENSE +21 -0
  315. package/node_modules/glob-stream/node_modules/kind-of/README.md +261 -0
  316. package/node_modules/glob-stream/node_modules/kind-of/index.js +116 -0
  317. package/node_modules/glob-stream/node_modules/kind-of/package.json +90 -0
  318. package/node_modules/glob-stream/node_modules/micromatch/LICENSE +21 -0
  319. package/node_modules/glob-stream/node_modules/micromatch/README.md +689 -0
  320. package/node_modules/glob-stream/node_modules/micromatch/index.js +431 -0
  321. package/node_modules/glob-stream/node_modules/micromatch/lib/chars.js +67 -0
  322. package/node_modules/glob-stream/node_modules/micromatch/lib/expand.js +304 -0
  323. package/node_modules/glob-stream/node_modules/micromatch/lib/glob.js +193 -0
  324. package/node_modules/glob-stream/node_modules/micromatch/lib/utils.js +149 -0
  325. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-extglob/LICENSE +21 -0
  326. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-extglob/README.md +75 -0
  327. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-extglob/index.js +11 -0
  328. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-extglob/package.json +48 -0
  329. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-glob/LICENSE +21 -0
  330. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-glob/README.md +105 -0
  331. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-glob/index.js +14 -0
  332. package/node_modules/glob-stream/node_modules/micromatch/node_modules/is-glob/package.json +60 -0
  333. package/node_modules/glob-stream/node_modules/micromatch/package.json +114 -0
  334. package/node_modules/glob-stream/node_modules/normalize-path/LICENSE +21 -0
  335. package/node_modules/glob-stream/node_modules/normalize-path/README.md +92 -0
  336. package/node_modules/glob-stream/node_modules/normalize-path/index.js +19 -0
  337. package/node_modules/glob-stream/node_modules/normalize-path/package.json +78 -0
  338. package/node_modules/glob-stream/node_modules/readable-stream/.npmignore +5 -0
  339. package/node_modules/glob-stream/node_modules/readable-stream/LICENSE +18 -0
  340. package/node_modules/glob-stream/node_modules/readable-stream/README.md +15 -0
  341. package/node_modules/glob-stream/node_modules/readable-stream/duplex.js +1 -0
  342. package/node_modules/glob-stream/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  343. package/node_modules/glob-stream/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  344. package/node_modules/glob-stream/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  345. package/node_modules/glob-stream/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  346. package/node_modules/glob-stream/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  347. package/node_modules/glob-stream/node_modules/readable-stream/package.json +32 -0
  348. package/node_modules/glob-stream/node_modules/readable-stream/passthrough.js +1 -0
  349. package/node_modules/glob-stream/node_modules/readable-stream/readable.js +11 -0
  350. package/node_modules/glob-stream/node_modules/readable-stream/transform.js +1 -0
  351. package/node_modules/glob-stream/node_modules/readable-stream/writable.js +1 -0
  352. package/node_modules/glob-stream/node_modules/string_decoder/.npmignore +2 -0
  353. package/node_modules/glob-stream/node_modules/string_decoder/LICENSE +20 -0
  354. package/node_modules/glob-stream/node_modules/string_decoder/README.md +7 -0
  355. package/node_modules/glob-stream/node_modules/string_decoder/index.js +221 -0
  356. package/node_modules/glob-stream/node_modules/string_decoder/package.json +25 -0
  357. package/node_modules/glob-stream/node_modules/through2/.npmignore +3 -0
  358. package/node_modules/glob-stream/node_modules/through2/LICENSE +39 -0
  359. package/node_modules/glob-stream/node_modules/through2/README.md +132 -0
  360. package/node_modules/glob-stream/node_modules/through2/package.json +31 -0
  361. package/node_modules/glob-stream/node_modules/through2/through2.js +96 -0
  362. package/node_modules/glob-stream/package.json +51 -0
  363. package/node_modules/graceful-fs/LICENSE +15 -0
  364. package/node_modules/graceful-fs/README.md +143 -0
  365. package/node_modules/graceful-fs/clone.js +23 -0
  366. package/node_modules/graceful-fs/graceful-fs.js +448 -0
  367. package/node_modules/graceful-fs/legacy-streams.js +118 -0
  368. package/node_modules/graceful-fs/package.json +50 -0
  369. package/node_modules/graceful-fs/polyfills.js +355 -0
  370. package/node_modules/gulp-sourcemaps/LICENSE.md +15 -0
  371. package/node_modules/gulp-sourcemaps/README.md +395 -0
  372. package/node_modules/gulp-sourcemaps/index.js +7 -0
  373. package/node_modules/gulp-sourcemaps/node_modules/strip-bom/index.js +17 -0
  374. package/node_modules/gulp-sourcemaps/node_modules/strip-bom/license +21 -0
  375. package/node_modules/gulp-sourcemaps/node_modules/strip-bom/package.json +42 -0
  376. package/node_modules/gulp-sourcemaps/node_modules/strip-bom/readme.md +39 -0
  377. package/node_modules/gulp-sourcemaps/node_modules/through2/LICENSE.md +9 -0
  378. package/node_modules/gulp-sourcemaps/node_modules/through2/README.md +134 -0
  379. package/node_modules/gulp-sourcemaps/node_modules/through2/package.json +33 -0
  380. package/node_modules/gulp-sourcemaps/node_modules/through2/through2.js +96 -0
  381. package/node_modules/gulp-sourcemaps/package.json +64 -0
  382. package/node_modules/gulp-sourcemaps/src/init/index.internals.js +122 -0
  383. package/node_modules/gulp-sourcemaps/src/init/index.js +141 -0
  384. package/node_modules/gulp-sourcemaps/src/utils.js +81 -0
  385. package/node_modules/gulp-sourcemaps/src/write/index.internals.js +181 -0
  386. package/node_modules/gulp-sourcemaps/src/write/index.js +71 -0
  387. package/node_modules/has/LICENSE-MIT +22 -0
  388. package/node_modules/has/README.md +18 -0
  389. package/node_modules/has/package.json +48 -0
  390. package/node_modules/has/src/index.js +5 -0
  391. package/node_modules/has/test/index.js +10 -0
  392. package/node_modules/has-ansi/index.js +4 -0
  393. package/node_modules/has-ansi/license +21 -0
  394. package/node_modules/has-ansi/node_modules/ansi-regex/index.js +4 -0
  395. package/node_modules/has-ansi/node_modules/ansi-regex/license +21 -0
  396. package/node_modules/has-ansi/node_modules/ansi-regex/package.json +64 -0
  397. package/node_modules/has-ansi/node_modules/ansi-regex/readme.md +39 -0
  398. package/node_modules/has-ansi/package.json +55 -0
  399. package/node_modules/has-ansi/readme.md +36 -0
  400. package/node_modules/hosted-git-info/CHANGELOG.md +151 -0
  401. package/node_modules/hosted-git-info/LICENSE +13 -0
  402. package/node_modules/hosted-git-info/README.md +133 -0
  403. package/node_modules/hosted-git-info/git-host-info.js +79 -0
  404. package/node_modules/hosted-git-info/git-host.js +156 -0
  405. package/node_modules/hosted-git-info/index.js +148 -0
  406. package/node_modules/hosted-git-info/package.json +40 -0
  407. package/node_modules/inflight/LICENSE +15 -0
  408. package/node_modules/inflight/README.md +37 -0
  409. package/node_modules/inflight/inflight.js +54 -0
  410. package/node_modules/inflight/package.json +29 -0
  411. package/node_modules/inherits/LICENSE +16 -0
  412. package/node_modules/inherits/README.md +42 -0
  413. package/node_modules/inherits/inherits.js +9 -0
  414. package/node_modules/inherits/inherits_browser.js +27 -0
  415. package/node_modules/inherits/package.json +29 -0
  416. package/node_modules/invert-kv/index.js +15 -0
  417. package/node_modules/invert-kv/package.json +33 -0
  418. package/node_modules/invert-kv/readme.md +25 -0
  419. package/node_modules/is-arrayish/.editorconfig +18 -0
  420. package/node_modules/is-arrayish/.istanbul.yml +4 -0
  421. package/node_modules/is-arrayish/.npmignore +5 -0
  422. package/node_modules/is-arrayish/.travis.yml +17 -0
  423. package/node_modules/is-arrayish/LICENSE +21 -0
  424. package/node_modules/is-arrayish/README.md +16 -0
  425. package/node_modules/is-arrayish/index.js +10 -0
  426. package/node_modules/is-arrayish/package.json +34 -0
  427. package/node_modules/is-buffer/LICENSE +21 -0
  428. package/node_modules/is-buffer/README.md +53 -0
  429. package/node_modules/is-buffer/index.js +21 -0
  430. package/node_modules/is-buffer/package.json +51 -0
  431. package/node_modules/is-buffer/test/basic.js +24 -0
  432. package/node_modules/is-core-module/.eslintrc +18 -0
  433. package/node_modules/is-core-module/.nycrc +9 -0
  434. package/node_modules/is-core-module/CHANGELOG.md +151 -0
  435. package/node_modules/is-core-module/LICENSE +20 -0
  436. package/node_modules/is-core-module/README.md +40 -0
  437. package/node_modules/is-core-module/core.json +155 -0
  438. package/node_modules/is-core-module/index.js +69 -0
  439. package/node_modules/is-core-module/package.json +72 -0
  440. package/node_modules/is-core-module/test/index.js +133 -0
  441. package/node_modules/is-dotfile/LICENSE +21 -0
  442. package/node_modules/is-dotfile/README.md +95 -0
  443. package/node_modules/is-dotfile/index.js +14 -0
  444. package/node_modules/is-dotfile/package.json +69 -0
  445. package/node_modules/is-equal-shallow/LICENSE +21 -0
  446. package/node_modules/is-equal-shallow/README.md +90 -0
  447. package/node_modules/is-equal-shallow/index.js +27 -0
  448. package/node_modules/is-equal-shallow/package.json +54 -0
  449. package/node_modules/is-extendable/LICENSE +21 -0
  450. package/node_modules/is-extendable/README.md +72 -0
  451. package/node_modules/is-extendable/index.js +13 -0
  452. package/node_modules/is-extendable/package.json +51 -0
  453. package/node_modules/is-extglob/LICENSE +21 -0
  454. package/node_modules/is-extglob/README.md +107 -0
  455. package/node_modules/is-extglob/index.js +20 -0
  456. package/node_modules/is-extglob/package.json +69 -0
  457. package/node_modules/is-posix-bracket/LICENSE +21 -0
  458. package/node_modules/is-posix-bracket/README.md +88 -0
  459. package/node_modules/is-posix-bracket/index.js +10 -0
  460. package/node_modules/is-posix-bracket/package.json +64 -0
  461. package/node_modules/is-primitive/LICENSE +21 -0
  462. package/node_modules/is-primitive/README.md +57 -0
  463. package/node_modules/is-primitive/index.js +13 -0
  464. package/node_modules/is-primitive/package.json +46 -0
  465. package/node_modules/is-utf8/LICENSE +9 -0
  466. package/node_modules/is-utf8/README.md +16 -0
  467. package/node_modules/is-utf8/is-utf8.js +76 -0
  468. package/node_modules/is-utf8/package.json +19 -0
  469. package/node_modules/is-valid-glob/LICENSE +21 -0
  470. package/node_modules/is-valid-glob/README.md +88 -0
  471. package/node_modules/is-valid-glob/index.js +21 -0
  472. package/node_modules/is-valid-glob/package.json +51 -0
  473. package/node_modules/isarray/.npmignore +1 -0
  474. package/node_modules/isarray/.travis.yml +4 -0
  475. package/node_modules/isarray/Makefile +6 -0
  476. package/node_modules/isarray/README.md +60 -0
  477. package/node_modules/isarray/component.json +19 -0
  478. package/node_modules/isarray/index.js +5 -0
  479. package/node_modules/isarray/package.json +45 -0
  480. package/node_modules/isarray/test.js +20 -0
  481. package/node_modules/isobject/LICENSE +21 -0
  482. package/node_modules/isobject/README.md +112 -0
  483. package/node_modules/isobject/index.js +14 -0
  484. package/node_modules/isobject/package.json +67 -0
  485. package/node_modules/json-stable-stringify-without-jsonify/.npmignore +1 -0
  486. package/node_modules/json-stable-stringify-without-jsonify/.travis.yml +4 -0
  487. package/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
  488. package/node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js +7 -0
  489. package/node_modules/json-stable-stringify-without-jsonify/example/nested.js +3 -0
  490. package/node_modules/json-stable-stringify-without-jsonify/example/str.js +3 -0
  491. package/node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js +7 -0
  492. package/node_modules/json-stable-stringify-without-jsonify/index.js +82 -0
  493. package/node_modules/json-stable-stringify-without-jsonify/package.json +43 -0
  494. package/node_modules/json-stable-stringify-without-jsonify/readme.markdown +132 -0
  495. package/node_modules/json-stable-stringify-without-jsonify/test/cmp.js +11 -0
  496. package/node_modules/json-stable-stringify-without-jsonify/test/nested.js +42 -0
  497. package/node_modules/json-stable-stringify-without-jsonify/test/replacer.js +74 -0
  498. package/node_modules/json-stable-stringify-without-jsonify/test/space.js +59 -0
  499. package/node_modules/json-stable-stringify-without-jsonify/test/str.js +32 -0
  500. package/node_modules/json-stable-stringify-without-jsonify/test/to-json.js +20 -0
  501. package/node_modules/kind-of/CHANGELOG.md +160 -0
  502. package/node_modules/kind-of/LICENSE +21 -0
  503. package/node_modules/kind-of/README.md +367 -0
  504. package/node_modules/kind-of/index.js +129 -0
  505. package/node_modules/kind-of/package.json +88 -0
  506. package/node_modules/lazy-debug-legacy/.npmignore +4 -0
  507. package/node_modules/lazy-debug-legacy/LICENSE.md +21 -0
  508. package/node_modules/lazy-debug-legacy/README.md +40 -0
  509. package/node_modules/lazy-debug-legacy/package.json +74 -0
  510. package/node_modules/lazy-debug-legacy/src/functions.js +116 -0
  511. package/node_modules/lazy-debug-legacy/src/index.js +30 -0
  512. package/node_modules/lazystream/LICENSE +23 -0
  513. package/node_modules/lazystream/README.md +114 -0
  514. package/node_modules/lazystream/lib/lazystream.js +54 -0
  515. package/node_modules/lazystream/package.json +46 -0
  516. package/node_modules/lazystream/test/data.md +13 -0
  517. package/node_modules/lazystream/test/fs_test.js +69 -0
  518. package/node_modules/lazystream/test/helper.js +39 -0
  519. package/node_modules/lazystream/test/pipe_test.js +36 -0
  520. package/node_modules/lazystream/test/readable_test.js +90 -0
  521. package/node_modules/lazystream/test/writable_test.js +59 -0
  522. package/node_modules/lcid/index.js +22 -0
  523. package/node_modules/lcid/lcid.json +203 -0
  524. package/node_modules/lcid/license +21 -0
  525. package/node_modules/lcid/package.json +46 -0
  526. package/node_modules/lcid/readme.md +35 -0
  527. package/node_modules/lodash._reinterpolate/LICENSE.txt +22 -0
  528. package/node_modules/lodash._reinterpolate/README.md +20 -0
  529. package/node_modules/lodash._reinterpolate/index.js +13 -0
  530. package/node_modules/lodash._reinterpolate/package.json +18 -0
  531. package/node_modules/lodash.assign/LICENSE +47 -0
  532. package/node_modules/lodash.assign/README.md +18 -0
  533. package/node_modules/lodash.assign/index.js +637 -0
  534. package/node_modules/lodash.assign/package.json +17 -0
  535. package/node_modules/lodash.assigninwith/LICENSE +47 -0
  536. package/node_modules/lodash.assigninwith/README.md +18 -0
  537. package/node_modules/lodash.assigninwith/index.js +624 -0
  538. package/node_modules/lodash.assigninwith/package.json +17 -0
  539. package/node_modules/lodash.isequal/LICENSE +47 -0
  540. package/node_modules/lodash.isequal/README.md +18 -0
  541. package/node_modules/lodash.isequal/index.js +1848 -0
  542. package/node_modules/lodash.isequal/package.json +16 -0
  543. package/node_modules/lodash.keys/LICENSE +47 -0
  544. package/node_modules/lodash.keys/README.md +18 -0
  545. package/node_modules/lodash.keys/index.js +401 -0
  546. package/node_modules/lodash.keys/package.json +17 -0
  547. package/node_modules/lodash.rest/LICENSE +47 -0
  548. package/node_modules/lodash.rest/README.md +18 -0
  549. package/node_modules/lodash.rest/index.js +323 -0
  550. package/node_modules/lodash.rest/package.json +17 -0
  551. package/node_modules/lodash.template/LICENSE +47 -0
  552. package/node_modules/lodash.template/README.md +18 -0
  553. package/node_modules/lodash.template/index.js +657 -0
  554. package/node_modules/lodash.template/package.json +25 -0
  555. package/node_modules/lodash.templatesettings/LICENSE +47 -0
  556. package/node_modules/lodash.templatesettings/README.md +18 -0
  557. package/node_modules/lodash.templatesettings/index.js +382 -0
  558. package/node_modules/lodash.templatesettings/package.json +19 -0
  559. package/node_modules/lodash.tostring/LICENSE +47 -0
  560. package/node_modules/lodash.tostring/README.md +18 -0
  561. package/node_modules/lodash.tostring/index.js +137 -0
  562. package/node_modules/lodash.tostring/package.json +17 -0
  563. package/node_modules/map-stream/.npmignore +3 -0
  564. package/node_modules/map-stream/.travis.yml +4 -0
  565. package/node_modules/map-stream/LICENCE +24 -0
  566. package/node_modules/map-stream/examples/pretty.js +26 -0
  567. package/node_modules/map-stream/index.js +145 -0
  568. package/node_modules/map-stream/package/.npmignore +3 -0
  569. package/node_modules/map-stream/package/.travis.yml +4 -0
  570. package/node_modules/map-stream/package/LICENCE +22 -0
  571. package/node_modules/map-stream/package/examples/pretty.js +26 -0
  572. package/node_modules/map-stream/package/index.js +145 -0
  573. package/node_modules/map-stream/package/package.json +24 -0
  574. package/node_modules/map-stream/package/readme.markdown +37 -0
  575. package/node_modules/map-stream/package/test/simple-map.asynct.js +318 -0
  576. package/node_modules/map-stream/package.json +24 -0
  577. package/node_modules/map-stream/readme.markdown +37 -0
  578. package/node_modules/map-stream/test/simple-map.asynct.js +318 -0
  579. package/node_modules/math-random/.travis.yml +6 -0
  580. package/node_modules/math-random/browser.js +17 -0
  581. package/node_modules/math-random/node.js +13 -0
  582. package/node_modules/math-random/package.json +16 -0
  583. package/node_modules/math-random/readme.md +26 -0
  584. package/node_modules/math-random/test.js +21 -0
  585. package/node_modules/minimatch/LICENSE +15 -0
  586. package/node_modules/minimatch/README.md +230 -0
  587. package/node_modules/minimatch/minimatch.js +947 -0
  588. package/node_modules/minimatch/package.json +33 -0
  589. package/node_modules/minimist/.travis.yml +8 -0
  590. package/node_modules/minimist/LICENSE +18 -0
  591. package/node_modules/minimist/example/parse.js +2 -0
  592. package/node_modules/minimist/index.js +249 -0
  593. package/node_modules/minimist/package.json +45 -0
  594. package/node_modules/minimist/readme.markdown +98 -0
  595. package/node_modules/minimist/test/all_bool.js +32 -0
  596. package/node_modules/minimist/test/bool.js +178 -0
  597. package/node_modules/minimist/test/dash.js +31 -0
  598. package/node_modules/minimist/test/default_bool.js +35 -0
  599. package/node_modules/minimist/test/dotted.js +22 -0
  600. package/node_modules/minimist/test/kv_short.js +16 -0
  601. package/node_modules/minimist/test/long.js +31 -0
  602. package/node_modules/minimist/test/num.js +36 -0
  603. package/node_modules/minimist/test/parse.js +197 -0
  604. package/node_modules/minimist/test/parse_modified.js +9 -0
  605. package/node_modules/minimist/test/proto.js +60 -0
  606. package/node_modules/minimist/test/short.js +67 -0
  607. package/node_modules/minimist/test/stop_early.js +15 -0
  608. package/node_modules/minimist/test/unknown.js +102 -0
  609. package/node_modules/minimist/test/whitespace.js +8 -0
  610. package/node_modules/mkdirp/LICENSE +21 -0
  611. package/node_modules/mkdirp/bin/cmd.js +33 -0
  612. package/node_modules/mkdirp/bin/usage.txt +12 -0
  613. package/node_modules/mkdirp/index.js +102 -0
  614. package/node_modules/mkdirp/package.json +33 -0
  615. package/node_modules/mkdirp/readme.markdown +100 -0
  616. package/node_modules/module/.npmignore +1 -0
  617. package/node_modules/module/LICENSE +21 -0
  618. package/node_modules/module/README.md +35 -0
  619. package/node_modules/module/dist/cli.js +57 -0
  620. package/node_modules/module/dist/index.js +61 -0
  621. package/node_modules/module/node_modules/ansi-regex/index.js +4 -0
  622. package/node_modules/module/node_modules/ansi-regex/license +21 -0
  623. package/node_modules/module/node_modules/ansi-regex/package.json +64 -0
  624. package/node_modules/module/node_modules/ansi-regex/readme.md +39 -0
  625. package/node_modules/module/node_modules/ansi-styles/index.js +65 -0
  626. package/node_modules/module/node_modules/ansi-styles/license +21 -0
  627. package/node_modules/module/node_modules/ansi-styles/package.json +50 -0
  628. package/node_modules/module/node_modules/ansi-styles/readme.md +86 -0
  629. package/node_modules/module/node_modules/camelcase/index.js +56 -0
  630. package/node_modules/module/node_modules/camelcase/license +21 -0
  631. package/node_modules/module/node_modules/camelcase/package.json +39 -0
  632. package/node_modules/module/node_modules/camelcase/readme.md +57 -0
  633. package/node_modules/module/node_modules/chalk/index.js +116 -0
  634. package/node_modules/module/node_modules/chalk/license +21 -0
  635. package/node_modules/module/node_modules/chalk/package.json +70 -0
  636. package/node_modules/module/node_modules/chalk/readme.md +213 -0
  637. package/node_modules/module/node_modules/cliui/CHANGELOG.md +15 -0
  638. package/node_modules/module/node_modules/cliui/LICENSE.txt +14 -0
  639. package/node_modules/module/node_modules/cliui/README.md +110 -0
  640. package/node_modules/module/node_modules/cliui/index.js +316 -0
  641. package/node_modules/module/node_modules/cliui/package.json +64 -0
  642. package/node_modules/module/node_modules/concat-stream/LICENSE +24 -0
  643. package/node_modules/module/node_modules/concat-stream/index.js +136 -0
  644. package/node_modules/module/node_modules/concat-stream/package.json +54 -0
  645. package/node_modules/module/node_modules/concat-stream/readme.md +100 -0
  646. package/node_modules/module/node_modules/decamelize/index.js +13 -0
  647. package/node_modules/module/node_modules/decamelize/license +21 -0
  648. package/node_modules/module/node_modules/decamelize/package.json +38 -0
  649. package/node_modules/module/node_modules/decamelize/readme.md +48 -0
  650. package/node_modules/module/node_modules/escape-string-regexp/index.js +11 -0
  651. package/node_modules/module/node_modules/escape-string-regexp/license +21 -0
  652. package/node_modules/module/node_modules/escape-string-regexp/package.json +41 -0
  653. package/node_modules/module/node_modules/escape-string-regexp/readme.md +27 -0
  654. package/node_modules/module/node_modules/find-up/index.js +53 -0
  655. package/node_modules/module/node_modules/find-up/license +21 -0
  656. package/node_modules/module/node_modules/find-up/package.json +51 -0
  657. package/node_modules/module/node_modules/find-up/readme.md +72 -0
  658. package/node_modules/module/node_modules/is-fullwidth-code-point/index.js +46 -0
  659. package/node_modules/module/node_modules/is-fullwidth-code-point/license +21 -0
  660. package/node_modules/module/node_modules/is-fullwidth-code-point/package.json +45 -0
  661. package/node_modules/module/node_modules/is-fullwidth-code-point/readme.md +39 -0
  662. package/node_modules/module/node_modules/load-json-file/index.js +21 -0
  663. package/node_modules/module/node_modules/load-json-file/license +21 -0
  664. package/node_modules/module/node_modules/load-json-file/package.json +46 -0
  665. package/node_modules/module/node_modules/load-json-file/readme.md +45 -0
  666. package/node_modules/module/node_modules/parse-json/index.js +35 -0
  667. package/node_modules/module/node_modules/parse-json/license +21 -0
  668. package/node_modules/module/node_modules/parse-json/package.json +46 -0
  669. package/node_modules/module/node_modules/parse-json/readme.md +83 -0
  670. package/node_modules/module/node_modules/parse-json/vendor/parse.js +752 -0
  671. package/node_modules/module/node_modules/parse-json/vendor/unicode.js +71 -0
  672. package/node_modules/module/node_modules/path-exists/index.js +24 -0
  673. package/node_modules/module/node_modules/path-exists/license +21 -0
  674. package/node_modules/module/node_modules/path-exists/package.json +40 -0
  675. package/node_modules/module/node_modules/path-exists/readme.md +45 -0
  676. package/node_modules/module/node_modules/path-type/index.js +29 -0
  677. package/node_modules/module/node_modules/path-type/license +21 -0
  678. package/node_modules/module/node_modules/path-type/package.json +52 -0
  679. package/node_modules/module/node_modules/path-type/readme.md +42 -0
  680. package/node_modules/module/node_modules/pify/index.js +68 -0
  681. package/node_modules/module/node_modules/pify/license +21 -0
  682. package/node_modules/module/node_modules/pify/package.json +48 -0
  683. package/node_modules/module/node_modules/pify/readme.md +119 -0
  684. package/node_modules/module/node_modules/pkg-conf/index.js +62 -0
  685. package/node_modules/module/node_modules/pkg-conf/license +21 -0
  686. package/node_modules/module/node_modules/pkg-conf/package.json +51 -0
  687. package/node_modules/module/node_modules/pkg-conf/readme.md +86 -0
  688. package/node_modules/module/node_modules/process-nextick-args/.travis.yml +12 -0
  689. package/node_modules/module/node_modules/process-nextick-args/index.js +43 -0
  690. package/node_modules/module/node_modules/process-nextick-args/license.md +19 -0
  691. package/node_modules/module/node_modules/process-nextick-args/package.json +22 -0
  692. package/node_modules/module/node_modules/process-nextick-args/readme.md +18 -0
  693. package/node_modules/module/node_modules/process-nextick-args/test.js +24 -0
  694. package/node_modules/module/node_modules/read-pkg/index.js +48 -0
  695. package/node_modules/module/node_modules/read-pkg/license +21 -0
  696. package/node_modules/module/node_modules/read-pkg/package.json +42 -0
  697. package/node_modules/module/node_modules/read-pkg/readme.md +79 -0
  698. package/node_modules/module/node_modules/read-pkg-up/index.js +31 -0
  699. package/node_modules/module/node_modules/read-pkg-up/license +21 -0
  700. package/node_modules/module/node_modules/read-pkg-up/package.json +59 -0
  701. package/node_modules/module/node_modules/read-pkg-up/readme.md +79 -0
  702. package/node_modules/module/node_modules/readable-stream/.npmignore +5 -0
  703. package/node_modules/module/node_modules/readable-stream/.travis.yml +52 -0
  704. package/node_modules/module/node_modules/readable-stream/.zuul.yml +1 -0
  705. package/node_modules/module/node_modules/readable-stream/LICENSE +18 -0
  706. package/node_modules/module/node_modules/readable-stream/README.md +36 -0
  707. package/node_modules/module/node_modules/readable-stream/doc/stream.markdown +1760 -0
  708. package/node_modules/module/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  709. package/node_modules/module/node_modules/readable-stream/duplex.js +1 -0
  710. package/node_modules/module/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  711. package/node_modules/module/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  712. package/node_modules/module/node_modules/readable-stream/lib/_stream_readable.js +880 -0
  713. package/node_modules/module/node_modules/readable-stream/lib/_stream_transform.js +180 -0
  714. package/node_modules/module/node_modules/readable-stream/lib/_stream_writable.js +516 -0
  715. package/node_modules/module/node_modules/readable-stream/package.json +37 -0
  716. package/node_modules/module/node_modules/readable-stream/passthrough.js +1 -0
  717. package/node_modules/module/node_modules/readable-stream/readable.js +12 -0
  718. package/node_modules/module/node_modules/readable-stream/transform.js +1 -0
  719. package/node_modules/module/node_modules/readable-stream/writable.js +1 -0
  720. package/node_modules/module/node_modules/string-width/index.js +37 -0
  721. package/node_modules/module/node_modules/string-width/license +21 -0
  722. package/node_modules/module/node_modules/string-width/package.json +56 -0
  723. package/node_modules/module/node_modules/string-width/readme.md +42 -0
  724. package/node_modules/module/node_modules/string_decoder/.npmignore +2 -0
  725. package/node_modules/module/node_modules/string_decoder/LICENSE +20 -0
  726. package/node_modules/module/node_modules/string_decoder/README.md +7 -0
  727. package/node_modules/module/node_modules/string_decoder/index.js +221 -0
  728. package/node_modules/module/node_modules/string_decoder/package.json +25 -0
  729. package/node_modules/module/node_modules/strip-ansi/index.js +6 -0
  730. package/node_modules/module/node_modules/strip-ansi/license +21 -0
  731. package/node_modules/module/node_modules/strip-ansi/package.json +57 -0
  732. package/node_modules/module/node_modules/strip-ansi/readme.md +33 -0
  733. package/node_modules/module/node_modules/strip-bom/index.js +17 -0
  734. package/node_modules/module/node_modules/strip-bom/license +21 -0
  735. package/node_modules/module/node_modules/strip-bom/package.json +42 -0
  736. package/node_modules/module/node_modules/strip-bom/readme.md +39 -0
  737. package/node_modules/module/node_modules/supports-color/index.js +50 -0
  738. package/node_modules/module/node_modules/supports-color/license +21 -0
  739. package/node_modules/module/node_modules/supports-color/package.json +49 -0
  740. package/node_modules/module/node_modules/supports-color/readme.md +36 -0
  741. package/node_modules/module/node_modules/wrap-ansi/index.js +168 -0
  742. package/node_modules/module/node_modules/wrap-ansi/license +21 -0
  743. package/node_modules/module/node_modules/wrap-ansi/package.json +68 -0
  744. package/node_modules/module/node_modules/wrap-ansi/readme.md +73 -0
  745. package/node_modules/module/node_modules/y18n/CHANGELOG.md +6 -0
  746. package/node_modules/module/node_modules/y18n/LICENSE +13 -0
  747. package/node_modules/module/node_modules/y18n/README.md +91 -0
  748. package/node_modules/module/node_modules/y18n/index.js +172 -0
  749. package/node_modules/module/node_modules/y18n/package.json +37 -0
  750. package/node_modules/module/node_modules/yargs/CHANGELOG.md +589 -0
  751. package/node_modules/module/node_modules/yargs/LICENSE +22 -0
  752. package/node_modules/module/node_modules/yargs/README.md +1482 -0
  753. package/node_modules/module/node_modules/yargs/completion.sh.hbs +28 -0
  754. package/node_modules/module/node_modules/yargs/index.js +31 -0
  755. package/node_modules/module/node_modules/yargs/lib/command.js +151 -0
  756. package/node_modules/module/node_modules/yargs/lib/completion.js +99 -0
  757. package/node_modules/module/node_modules/yargs/lib/obj-filter.js +10 -0
  758. package/node_modules/module/node_modules/yargs/lib/usage.js +405 -0
  759. package/node_modules/module/node_modules/yargs/lib/validation.js +279 -0
  760. package/node_modules/module/node_modules/yargs/locales/de.json +37 -0
  761. package/node_modules/module/node_modules/yargs/locales/en.json +37 -0
  762. package/node_modules/module/node_modules/yargs/locales/es.json +37 -0
  763. package/node_modules/module/node_modules/yargs/locales/fr.json +37 -0
  764. package/node_modules/module/node_modules/yargs/locales/id.json +38 -0
  765. package/node_modules/module/node_modules/yargs/locales/it.json +37 -0
  766. package/node_modules/module/node_modules/yargs/locales/ja.json +37 -0
  767. package/node_modules/module/node_modules/yargs/locales/ko.json +37 -0
  768. package/node_modules/module/node_modules/yargs/locales/nb.json +37 -0
  769. package/node_modules/module/node_modules/yargs/locales/pirate.json +12 -0
  770. package/node_modules/module/node_modules/yargs/locales/pl.json +37 -0
  771. package/node_modules/module/node_modules/yargs/locales/pt.json +37 -0
  772. package/node_modules/module/node_modules/yargs/locales/pt_BR.json +37 -0
  773. package/node_modules/module/node_modules/yargs/locales/tr.json +37 -0
  774. package/node_modules/module/node_modules/yargs/locales/zh.json +37 -0
  775. package/node_modules/module/node_modules/yargs/package.json +72 -0
  776. package/node_modules/module/node_modules/yargs/yargs.js +730 -0
  777. package/node_modules/module/node_modules/yargs-parser/CHANGELOG.md +40 -0
  778. package/node_modules/module/node_modules/yargs-parser/LICENSE.txt +14 -0
  779. package/node_modules/module/node_modules/yargs-parser/README.md +209 -0
  780. package/node_modules/module/node_modules/yargs-parser/index.js +689 -0
  781. package/node_modules/module/node_modules/yargs-parser/lib/tokenize-arg-string.js +34 -0
  782. package/node_modules/module/node_modules/yargs-parser/node_modules/camelcase/index.js +56 -0
  783. package/node_modules/module/node_modules/yargs-parser/node_modules/camelcase/license +21 -0
  784. package/node_modules/module/node_modules/yargs-parser/node_modules/camelcase/package.json +39 -0
  785. package/node_modules/module/node_modules/yargs-parser/node_modules/camelcase/readme.md +57 -0
  786. package/node_modules/module/node_modules/yargs-parser/package.json +44 -0
  787. package/node_modules/module/package.json +51 -0
  788. package/node_modules/module/templates/README.md +3 -0
  789. package/node_modules/module/templates/cli.js +6 -0
  790. package/node_modules/module/templates/gitignore +2 -0
  791. package/node_modules/module/templates/index.js +5 -0
  792. package/node_modules/module/templates/package.json +9 -0
  793. package/node_modules/normalize-package-data/AUTHORS +4 -0
  794. package/node_modules/normalize-package-data/LICENSE +30 -0
  795. package/node_modules/normalize-package-data/README.md +106 -0
  796. package/node_modules/normalize-package-data/lib/extract_description.js +14 -0
  797. package/node_modules/normalize-package-data/lib/fixer.js +418 -0
  798. package/node_modules/normalize-package-data/lib/make_warning.js +23 -0
  799. package/node_modules/normalize-package-data/lib/normalize.js +39 -0
  800. package/node_modules/normalize-package-data/lib/safe_format.js +9 -0
  801. package/node_modules/normalize-package-data/lib/typos.json +25 -0
  802. package/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
  803. package/node_modules/normalize-package-data/node_modules/semver/CHANGELOG.md +39 -0
  804. package/node_modules/normalize-package-data/node_modules/semver/LICENSE +15 -0
  805. package/node_modules/normalize-package-data/node_modules/semver/README.md +412 -0
  806. package/node_modules/normalize-package-data/node_modules/semver/bin/semver +160 -0
  807. package/node_modules/normalize-package-data/node_modules/semver/package.json +28 -0
  808. package/node_modules/normalize-package-data/node_modules/semver/range.bnf +16 -0
  809. package/node_modules/normalize-package-data/node_modules/semver/semver.js +1483 -0
  810. package/node_modules/normalize-package-data/package.json +31 -0
  811. package/node_modules/number-is-nan/index.js +4 -0
  812. package/node_modules/number-is-nan/license +21 -0
  813. package/node_modules/number-is-nan/package.json +35 -0
  814. package/node_modules/number-is-nan/readme.md +28 -0
  815. package/node_modules/object-assign/index.js +90 -0
  816. package/node_modules/object-assign/license +21 -0
  817. package/node_modules/object-assign/package.json +42 -0
  818. package/node_modules/object-assign/readme.md +61 -0
  819. package/node_modules/object.omit/LICENSE +21 -0
  820. package/node_modules/object.omit/README.md +118 -0
  821. package/node_modules/object.omit/index.js +40 -0
  822. package/node_modules/object.omit/package.json +67 -0
  823. package/node_modules/once/LICENSE +15 -0
  824. package/node_modules/once/README.md +79 -0
  825. package/node_modules/once/once.js +42 -0
  826. package/node_modules/once/package.json +33 -0
  827. package/node_modules/ordered-read-streams/LICENSE +20 -0
  828. package/node_modules/ordered-read-streams/README.md +65 -0
  829. package/node_modules/ordered-read-streams/index.js +81 -0
  830. package/node_modules/ordered-read-streams/node_modules/is-stream/index.js +21 -0
  831. package/node_modules/ordered-read-streams/node_modules/is-stream/license +21 -0
  832. package/node_modules/ordered-read-streams/node_modules/is-stream/package.json +38 -0
  833. package/node_modules/ordered-read-streams/node_modules/is-stream/readme.md +42 -0
  834. package/node_modules/ordered-read-streams/package.json +25 -0
  835. package/node_modules/os-homedir/index.js +24 -0
  836. package/node_modules/os-homedir/license +21 -0
  837. package/node_modules/os-homedir/package.json +41 -0
  838. package/node_modules/os-homedir/readme.md +31 -0
  839. package/node_modules/os-locale/index.js +127 -0
  840. package/node_modules/os-locale/license +21 -0
  841. package/node_modules/os-locale/package.json +43 -0
  842. package/node_modules/os-locale/readme.md +47 -0
  843. package/node_modules/parse-glob/LICENSE +21 -0
  844. package/node_modules/parse-glob/README.md +115 -0
  845. package/node_modules/parse-glob/index.js +156 -0
  846. package/node_modules/parse-glob/node_modules/is-extglob/LICENSE +21 -0
  847. package/node_modules/parse-glob/node_modules/is-extglob/README.md +75 -0
  848. package/node_modules/parse-glob/node_modules/is-extglob/index.js +11 -0
  849. package/node_modules/parse-glob/node_modules/is-extglob/package.json +48 -0
  850. package/node_modules/parse-glob/node_modules/is-glob/LICENSE +21 -0
  851. package/node_modules/parse-glob/node_modules/is-glob/README.md +105 -0
  852. package/node_modules/parse-glob/node_modules/is-glob/index.js +14 -0
  853. package/node_modules/parse-glob/node_modules/is-glob/package.json +60 -0
  854. package/node_modules/parse-glob/package.json +62 -0
  855. package/node_modules/path-dirname/index.js +143 -0
  856. package/node_modules/path-dirname/license +22 -0
  857. package/node_modules/path-dirname/package.json +29 -0
  858. package/node_modules/path-dirname/readme.md +53 -0
  859. package/node_modules/path-is-absolute/index.js +20 -0
  860. package/node_modules/path-is-absolute/license +21 -0
  861. package/node_modules/path-is-absolute/package.json +43 -0
  862. package/node_modules/path-is-absolute/readme.md +59 -0
  863. package/node_modules/path-parse/LICENSE +21 -0
  864. package/node_modules/path-parse/README.md +42 -0
  865. package/node_modules/path-parse/index.js +75 -0
  866. package/node_modules/path-parse/package.json +33 -0
  867. package/node_modules/pinkie/index.js +292 -0
  868. package/node_modules/pinkie/license +21 -0
  869. package/node_modules/pinkie/package.json +36 -0
  870. package/node_modules/pinkie/readme.md +83 -0
  871. package/node_modules/pinkie-promise/index.js +3 -0
  872. package/node_modules/pinkie-promise/license +21 -0
  873. package/node_modules/pinkie-promise/package.json +35 -0
  874. package/node_modules/pinkie-promise/readme.md +28 -0
  875. package/node_modules/preserve/.gitattributes +14 -0
  876. package/node_modules/preserve/.jshintrc +24 -0
  877. package/node_modules/preserve/.npmignore +53 -0
  878. package/node_modules/preserve/.travis.yml +3 -0
  879. package/node_modules/preserve/.verb.md +59 -0
  880. package/node_modules/preserve/LICENSE +24 -0
  881. package/node_modules/preserve/README.md +90 -0
  882. package/node_modules/preserve/index.js +54 -0
  883. package/node_modules/preserve/package.json +48 -0
  884. package/node_modules/preserve/test.js +48 -0
  885. package/node_modules/process-nextick-args/index.js +45 -0
  886. package/node_modules/process-nextick-args/license.md +19 -0
  887. package/node_modules/process-nextick-args/package.json +25 -0
  888. package/node_modules/process-nextick-args/readme.md +18 -0
  889. package/node_modules/randomatic/LICENSE +21 -0
  890. package/node_modules/randomatic/README.md +193 -0
  891. package/node_modules/randomatic/index.js +95 -0
  892. package/node_modules/randomatic/node_modules/is-number/LICENSE +21 -0
  893. package/node_modules/randomatic/node_modules/is-number/README.md +135 -0
  894. package/node_modules/randomatic/node_modules/is-number/index.js +21 -0
  895. package/node_modules/randomatic/node_modules/is-number/package.json +76 -0
  896. package/node_modules/randomatic/package.json +80 -0
  897. package/node_modules/readable-stream/.travis.yml +34 -0
  898. package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  899. package/node_modules/readable-stream/GOVERNANCE.md +136 -0
  900. package/node_modules/readable-stream/LICENSE +47 -0
  901. package/node_modules/readable-stream/README.md +58 -0
  902. package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  903. package/node_modules/readable-stream/duplex-browser.js +1 -0
  904. package/node_modules/readable-stream/duplex.js +1 -0
  905. package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  906. package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  907. package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  908. package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  909. package/node_modules/readable-stream/lib/_stream_writable.js +687 -0
  910. package/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
  911. package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  912. package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  913. package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  914. package/node_modules/readable-stream/package.json +52 -0
  915. package/node_modules/readable-stream/passthrough.js +1 -0
  916. package/node_modules/readable-stream/readable-browser.js +7 -0
  917. package/node_modules/readable-stream/readable.js +19 -0
  918. package/node_modules/readable-stream/transform.js +1 -0
  919. package/node_modules/readable-stream/writable-browser.js +1 -0
  920. package/node_modules/readable-stream/writable.js +8 -0
  921. package/node_modules/regex-cache/LICENSE +21 -0
  922. package/node_modules/regex-cache/README.md +166 -0
  923. package/node_modules/regex-cache/index.js +68 -0
  924. package/node_modules/regex-cache/package.json +64 -0
  925. package/node_modules/remove-trailing-separator/history.md +17 -0
  926. package/node_modules/remove-trailing-separator/index.js +17 -0
  927. package/node_modules/remove-trailing-separator/license +3 -0
  928. package/node_modules/remove-trailing-separator/package.json +37 -0
  929. package/node_modules/remove-trailing-separator/readme.md +51 -0
  930. package/node_modules/repeat-element/LICENSE +21 -0
  931. package/node_modules/repeat-element/README.md +99 -0
  932. package/node_modules/repeat-element/index.js +22 -0
  933. package/node_modules/repeat-element/package.json +49 -0
  934. package/node_modules/repeat-string/LICENSE +21 -0
  935. package/node_modules/repeat-string/README.md +136 -0
  936. package/node_modules/repeat-string/index.js +70 -0
  937. package/node_modules/repeat-string/package.json +77 -0
  938. package/node_modules/replace-ext/.npmignore +6 -0
  939. package/node_modules/replace-ext/.travis.yml +8 -0
  940. package/node_modules/replace-ext/LICENSE +20 -0
  941. package/node_modules/replace-ext/README.md +44 -0
  942. package/node_modules/replace-ext/index.js +9 -0
  943. package/node_modules/replace-ext/package.json +35 -0
  944. package/node_modules/replace-ext/test/main.js +51 -0
  945. package/node_modules/require-main-filename/.npmignore +3 -0
  946. package/node_modules/require-main-filename/.travis.yml +8 -0
  947. package/node_modules/require-main-filename/LICENSE.txt +14 -0
  948. package/node_modules/require-main-filename/README.md +26 -0
  949. package/node_modules/require-main-filename/index.js +18 -0
  950. package/node_modules/require-main-filename/package.json +30 -0
  951. package/node_modules/require-main-filename/test.js +36 -0
  952. package/node_modules/resolve/.editorconfig +37 -0
  953. package/node_modules/resolve/.eslintrc +65 -0
  954. package/node_modules/resolve/.github/FUNDING.yml +12 -0
  955. package/node_modules/resolve/LICENSE +21 -0
  956. package/node_modules/resolve/SECURITY.md +3 -0
  957. package/node_modules/resolve/async.js +3 -0
  958. package/node_modules/resolve/bin/resolve +50 -0
  959. package/node_modules/resolve/example/async.js +5 -0
  960. package/node_modules/resolve/example/sync.js +3 -0
  961. package/node_modules/resolve/index.js +6 -0
  962. package/node_modules/resolve/lib/async.js +329 -0
  963. package/node_modules/resolve/lib/caller.js +8 -0
  964. package/node_modules/resolve/lib/core.js +52 -0
  965. package/node_modules/resolve/lib/core.json +153 -0
  966. package/node_modules/resolve/lib/homedir.js +24 -0
  967. package/node_modules/resolve/lib/is-core.js +5 -0
  968. package/node_modules/resolve/lib/node-modules-paths.js +42 -0
  969. package/node_modules/resolve/lib/normalize-options.js +10 -0
  970. package/node_modules/resolve/lib/sync.js +208 -0
  971. package/node_modules/resolve/package.json +71 -0
  972. package/node_modules/resolve/readme.markdown +301 -0
  973. package/node_modules/resolve/sync.js +3 -0
  974. package/node_modules/resolve/test/core.js +88 -0
  975. package/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  976. package/node_modules/resolve/test/dotdot/index.js +1 -0
  977. package/node_modules/resolve/test/dotdot.js +29 -0
  978. package/node_modules/resolve/test/faulty_basedir.js +29 -0
  979. package/node_modules/resolve/test/filter.js +34 -0
  980. package/node_modules/resolve/test/filter_sync.js +33 -0
  981. package/node_modules/resolve/test/home_paths.js +127 -0
  982. package/node_modules/resolve/test/home_paths_sync.js +114 -0
  983. package/node_modules/resolve/test/mock.js +315 -0
  984. package/node_modules/resolve/test/mock_sync.js +214 -0
  985. package/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  986. package/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  987. package/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  988. package/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  989. package/node_modules/resolve/test/module_dir.js +56 -0
  990. package/node_modules/resolve/test/node-modules-paths.js +143 -0
  991. package/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  992. package/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  993. package/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  994. package/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  995. package/node_modules/resolve/test/node_path.js +70 -0
  996. package/node_modules/resolve/test/nonstring.js +9 -0
  997. package/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  998. package/node_modules/resolve/test/pathfilter.js +75 -0
  999. package/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  1000. package/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  1001. package/node_modules/resolve/test/precedence/aaa.js +1 -0
  1002. package/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  1003. package/node_modules/resolve/test/precedence/bbb.js +1 -0
  1004. package/node_modules/resolve/test/precedence.js +23 -0
  1005. package/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  1006. package/node_modules/resolve/test/resolver/baz/package.json +4 -0
  1007. package/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  1008. package/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  1009. package/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  1010. package/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
  1011. package/node_modules/resolve/test/resolver/cup.coffee +1 -0
  1012. package/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
  1013. package/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
  1014. package/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
  1015. package/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
  1016. package/node_modules/resolve/test/resolver/false_main/index.js +0 -0
  1017. package/node_modules/resolve/test/resolver/false_main/package.json +4 -0
  1018. package/node_modules/resolve/test/resolver/foo.js +1 -0
  1019. package/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  1020. package/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  1021. package/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
  1022. package/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
  1023. package/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
  1024. package/node_modules/resolve/test/resolver/mug.coffee +0 -0
  1025. package/node_modules/resolve/test/resolver/mug.js +0 -0
  1026. package/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
  1027. package/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
  1028. package/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
  1029. package/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
  1030. package/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  1031. package/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
  1032. package/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
  1033. package/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
  1034. package/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
  1035. package/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  1036. package/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  1037. package/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  1038. package/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
  1039. package/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
  1040. package/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  1041. package/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  1042. package/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
  1043. package/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
  1044. package/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
  1045. package/node_modules/resolve/test/resolver.js +595 -0
  1046. package/node_modules/resolve/test/resolver_sync.js +726 -0
  1047. package/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  1048. package/node_modules/resolve/test/shadowed_core.js +54 -0
  1049. package/node_modules/resolve/test/subdirs.js +13 -0
  1050. package/node_modules/resolve/test/symlinks.js +176 -0
  1051. package/node_modules/resolve-url/.jshintrc +44 -0
  1052. package/node_modules/resolve-url/LICENSE +21 -0
  1053. package/node_modules/resolve-url/bower.json +15 -0
  1054. package/node_modules/resolve-url/changelog.md +15 -0
  1055. package/node_modules/resolve-url/component.json +15 -0
  1056. package/node_modules/resolve-url/package.json +34 -0
  1057. package/node_modules/resolve-url/readme.md +83 -0
  1058. package/node_modules/resolve-url/resolve-url.js +47 -0
  1059. package/node_modules/resolve-url/test/resolve-url.js +70 -0
  1060. package/node_modules/safe-buffer/LICENSE +21 -0
  1061. package/node_modules/safe-buffer/README.md +584 -0
  1062. package/node_modules/safe-buffer/index.d.ts +187 -0
  1063. package/node_modules/safe-buffer/index.js +62 -0
  1064. package/node_modules/safe-buffer/package.json +37 -0
  1065. package/node_modules/source-map/CHANGELOG.md +301 -0
  1066. package/node_modules/source-map/LICENSE +28 -0
  1067. package/node_modules/source-map/README.md +742 -0
  1068. package/node_modules/source-map/dist/source-map.debug.js +3234 -0
  1069. package/node_modules/source-map/dist/source-map.js +3233 -0
  1070. package/node_modules/source-map/dist/source-map.min.js +2 -0
  1071. package/node_modules/source-map/dist/source-map.min.js.map +1 -0
  1072. package/node_modules/source-map/lib/array-set.js +121 -0
  1073. package/node_modules/source-map/lib/base64-vlq.js +140 -0
  1074. package/node_modules/source-map/lib/base64.js +67 -0
  1075. package/node_modules/source-map/lib/binary-search.js +111 -0
  1076. package/node_modules/source-map/lib/mapping-list.js +79 -0
  1077. package/node_modules/source-map/lib/quick-sort.js +114 -0
  1078. package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  1079. package/node_modules/source-map/lib/source-map-generator.js +425 -0
  1080. package/node_modules/source-map/lib/source-node.js +413 -0
  1081. package/node_modules/source-map/lib/util.js +488 -0
  1082. package/node_modules/source-map/package.json +73 -0
  1083. package/node_modules/source-map/source-map.d.ts +98 -0
  1084. package/node_modules/source-map/source-map.js +8 -0
  1085. package/node_modules/source-map-resolve/LICENSE +22 -0
  1086. package/node_modules/source-map-resolve/changelog.md +108 -0
  1087. package/node_modules/source-map-resolve/lib/decode-uri-component.js +8 -0
  1088. package/node_modules/source-map-resolve/lib/resolve-url.js +9 -0
  1089. package/node_modules/source-map-resolve/lib/source-map-resolve-node.js +342 -0
  1090. package/node_modules/source-map-resolve/package.json +47 -0
  1091. package/node_modules/source-map-resolve/readme.md +231 -0
  1092. package/node_modules/source-map-resolve/source-map-resolve.js +348 -0
  1093. package/node_modules/source-map-url/LICENSE +21 -0
  1094. package/node_modules/source-map-url/changelog.md +57 -0
  1095. package/node_modules/source-map-url/package.json +39 -0
  1096. package/node_modules/source-map-url/readme.md +97 -0
  1097. package/node_modules/source-map-url/source-map-url.js +57 -0
  1098. package/node_modules/spdx-correct/LICENSE +202 -0
  1099. package/node_modules/spdx-correct/README.md +14 -0
  1100. package/node_modules/spdx-correct/index.js +364 -0
  1101. package/node_modules/spdx-correct/package.json +39 -0
  1102. package/node_modules/spdx-exceptions/README.md +36 -0
  1103. package/node_modules/spdx-exceptions/index.json +40 -0
  1104. package/node_modules/spdx-exceptions/package.json +17 -0
  1105. package/node_modules/spdx-expression-parse/AUTHORS +4 -0
  1106. package/node_modules/spdx-expression-parse/LICENSE +22 -0
  1107. package/node_modules/spdx-expression-parse/README.md +91 -0
  1108. package/node_modules/spdx-expression-parse/index.js +8 -0
  1109. package/node_modules/spdx-expression-parse/package.json +39 -0
  1110. package/node_modules/spdx-expression-parse/parse.js +138 -0
  1111. package/node_modules/spdx-expression-parse/scan.js +131 -0
  1112. package/node_modules/spdx-license-ids/README.md +52 -0
  1113. package/node_modules/spdx-license-ids/deprecated.json +27 -0
  1114. package/node_modules/spdx-license-ids/index.json +467 -0
  1115. package/node_modules/spdx-license-ids/package.json +39 -0
  1116. package/node_modules/stream-shift/.travis.yml +6 -0
  1117. package/node_modules/stream-shift/LICENSE +21 -0
  1118. package/node_modules/stream-shift/README.md +25 -0
  1119. package/node_modules/stream-shift/index.js +20 -0
  1120. package/node_modules/stream-shift/package.json +25 -0
  1121. package/node_modules/stream-shift/test.js +48 -0
  1122. package/node_modules/string_decoder/.travis.yml +50 -0
  1123. package/node_modules/string_decoder/LICENSE +48 -0
  1124. package/node_modules/string_decoder/README.md +47 -0
  1125. package/node_modules/string_decoder/lib/string_decoder.js +296 -0
  1126. package/node_modules/string_decoder/package.json +31 -0
  1127. package/node_modules/strip-bom-stream/index.js +10 -0
  1128. package/node_modules/strip-bom-stream/license +21 -0
  1129. package/node_modules/strip-bom-stream/node_modules/strip-bom/index.js +17 -0
  1130. package/node_modules/strip-bom-stream/node_modules/strip-bom/license +21 -0
  1131. package/node_modules/strip-bom-stream/node_modules/strip-bom/package.json +42 -0
  1132. package/node_modules/strip-bom-stream/node_modules/strip-bom/readme.md +39 -0
  1133. package/node_modules/strip-bom-stream/package.json +44 -0
  1134. package/node_modules/strip-bom-stream/readme.md +39 -0
  1135. package/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
  1136. package/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
  1137. package/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
  1138. package/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
  1139. package/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
  1140. package/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
  1141. package/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
  1142. package/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
  1143. package/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
  1144. package/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
  1145. package/node_modules/symbol/LICENSE +373 -0
  1146. package/node_modules/symbol/README.md +19 -0
  1147. package/node_modules/symbol/index.js +55 -0
  1148. package/node_modules/symbol/package.json +20 -0
  1149. package/node_modules/through2-filter/README.md +79 -0
  1150. package/node_modules/through2-filter/index.js +46 -0
  1151. package/node_modules/through2-filter/node_modules/through2/LICENSE.md +9 -0
  1152. package/node_modules/through2-filter/node_modules/through2/README.md +134 -0
  1153. package/node_modules/through2-filter/node_modules/through2/package.json +33 -0
  1154. package/node_modules/through2-filter/node_modules/through2/through2.js +96 -0
  1155. package/node_modules/through2-filter/package.json +48 -0
  1156. package/node_modules/tildify/index.js +9 -0
  1157. package/node_modules/tildify/license +21 -0
  1158. package/node_modules/tildify/package.json +41 -0
  1159. package/node_modules/tildify/readme.md +30 -0
  1160. package/node_modules/to-absolute-glob/LICENSE +21 -0
  1161. package/node_modules/to-absolute-glob/index.js +28 -0
  1162. package/node_modules/to-absolute-glob/package.json +41 -0
  1163. package/node_modules/to-absolute-glob/readme.md +134 -0
  1164. package/node_modules/typedarray/.travis.yml +4 -0
  1165. package/node_modules/typedarray/LICENSE +35 -0
  1166. package/node_modules/typedarray/example/tarray.js +4 -0
  1167. package/node_modules/typedarray/index.js +630 -0
  1168. package/node_modules/typedarray/package.json +55 -0
  1169. package/node_modules/typedarray/readme.markdown +61 -0
  1170. package/node_modules/typedarray/test/server/undef_globals.js +19 -0
  1171. package/node_modules/typedarray/test/tarray.js +10 -0
  1172. package/node_modules/unique-stream/LICENSE +20 -0
  1173. package/node_modules/unique-stream/README.md +134 -0
  1174. package/node_modules/unique-stream/index.js +48 -0
  1175. package/node_modules/unique-stream/node_modules/through2/LICENSE.md +9 -0
  1176. package/node_modules/unique-stream/node_modules/through2/README.md +134 -0
  1177. package/node_modules/unique-stream/node_modules/through2/package.json +33 -0
  1178. package/node_modules/unique-stream/node_modules/through2/through2.js +96 -0
  1179. package/node_modules/unique-stream/node_modules/through2-filter/LICENSE +9 -0
  1180. package/node_modules/unique-stream/node_modules/through2-filter/README.md +79 -0
  1181. package/node_modules/unique-stream/node_modules/through2-filter/index.js +50 -0
  1182. package/node_modules/unique-stream/node_modules/through2-filter/package.json +48 -0
  1183. package/node_modules/unique-stream/package.json +32 -0
  1184. package/node_modules/urix/.jshintrc +42 -0
  1185. package/node_modules/urix/LICENSE +21 -0
  1186. package/node_modules/urix/index.js +17 -0
  1187. package/node_modules/urix/package.json +25 -0
  1188. package/node_modules/urix/readme.md +46 -0
  1189. package/node_modules/urix/test/index.js +43 -0
  1190. package/node_modules/util-deprecate/History.md +16 -0
  1191. package/node_modules/util-deprecate/LICENSE +24 -0
  1192. package/node_modules/util-deprecate/README.md +53 -0
  1193. package/node_modules/util-deprecate/browser.js +67 -0
  1194. package/node_modules/util-deprecate/node.js +6 -0
  1195. package/node_modules/util-deprecate/package.json +27 -0
  1196. package/node_modules/vali-date/index.js +4 -0
  1197. package/node_modules/vali-date/license +21 -0
  1198. package/node_modules/vali-date/package.json +34 -0
  1199. package/node_modules/vali-date/readme.md +44 -0
  1200. package/node_modules/validate-npm-package-license/LICENSE +202 -0
  1201. package/node_modules/validate-npm-package-license/README.md +113 -0
  1202. package/node_modules/validate-npm-package-license/index.js +86 -0
  1203. package/node_modules/validate-npm-package-license/package.json +28 -0
  1204. package/node_modules/vinyl/CHANGELOG.md +163 -0
  1205. package/node_modules/vinyl/LICENSE +20 -0
  1206. package/node_modules/vinyl/README.md +265 -0
  1207. package/node_modules/vinyl/index.js +270 -0
  1208. package/node_modules/vinyl/lib/cloneBuffer.js +7 -0
  1209. package/node_modules/vinyl/lib/inspectStream.js +15 -0
  1210. package/node_modules/vinyl/lib/isBuffer.js +1 -0
  1211. package/node_modules/vinyl/lib/isNull.js +3 -0
  1212. package/node_modules/vinyl/lib/isStream.js +5 -0
  1213. package/node_modules/vinyl/node_modules/clone/.npmignore +4 -0
  1214. package/node_modules/vinyl/node_modules/clone/LICENSE +18 -0
  1215. package/node_modules/vinyl/node_modules/clone/README.md +126 -0
  1216. package/node_modules/vinyl/node_modules/clone/clone.iml +10 -0
  1217. package/node_modules/vinyl/node_modules/clone/clone.js +166 -0
  1218. package/node_modules/vinyl/node_modules/clone/package.json +51 -0
  1219. package/node_modules/vinyl/package.json +44 -0
  1220. package/node_modules/vinyl-fs/CHANGELOG.md +369 -0
  1221. package/node_modules/vinyl-fs/LICENSE +20 -0
  1222. package/node_modules/vinyl-fs/README.md +293 -0
  1223. package/node_modules/vinyl-fs/index.js +7 -0
  1224. package/node_modules/vinyl-fs/lib/dest/index.js +54 -0
  1225. package/node_modules/vinyl-fs/lib/dest/writeContents/index.js +59 -0
  1226. package/node_modules/vinyl-fs/lib/dest/writeContents/writeBuffer.js +26 -0
  1227. package/node_modules/vinyl-fs/lib/dest/writeContents/writeDir.js +53 -0
  1228. package/node_modules/vinyl-fs/lib/dest/writeContents/writeStream.js +57 -0
  1229. package/node_modules/vinyl-fs/lib/dest/writeContents/writeSymbolicLink.js +20 -0
  1230. package/node_modules/vinyl-fs/lib/fileOperations.js +206 -0
  1231. package/node_modules/vinyl-fs/lib/filterSince.js +16 -0
  1232. package/node_modules/vinyl-fs/lib/prepareWrite.js +69 -0
  1233. package/node_modules/vinyl-fs/lib/sink.js +53 -0
  1234. package/node_modules/vinyl-fs/lib/src/getContents/bufferFile.js +22 -0
  1235. package/node_modules/vinyl-fs/lib/src/getContents/index.js +31 -0
  1236. package/node_modules/vinyl-fs/lib/src/getContents/readDir.js +8 -0
  1237. package/node_modules/vinyl-fs/lib/src/getContents/readSymbolicLink.js +18 -0
  1238. package/node_modules/vinyl-fs/lib/src/getContents/streamFile.js +26 -0
  1239. package/node_modules/vinyl-fs/lib/src/index.js +62 -0
  1240. package/node_modules/vinyl-fs/lib/src/wrapWithVinylFile.js +51 -0
  1241. package/node_modules/vinyl-fs/lib/symlink/index.js +30 -0
  1242. package/node_modules/vinyl-fs/node_modules/merge-stream/LICENSE +21 -0
  1243. package/node_modules/vinyl-fs/node_modules/merge-stream/README.md +55 -0
  1244. package/node_modules/vinyl-fs/node_modules/merge-stream/index.js +41 -0
  1245. package/node_modules/vinyl-fs/node_modules/merge-stream/package.json +21 -0
  1246. package/node_modules/vinyl-fs/node_modules/strip-bom/index.js +17 -0
  1247. package/node_modules/vinyl-fs/node_modules/strip-bom/license +21 -0
  1248. package/node_modules/vinyl-fs/node_modules/strip-bom/package.json +42 -0
  1249. package/node_modules/vinyl-fs/node_modules/strip-bom/readme.md +39 -0
  1250. package/node_modules/vinyl-fs/node_modules/through2/LICENSE.md +9 -0
  1251. package/node_modules/vinyl-fs/node_modules/through2/README.md +134 -0
  1252. package/node_modules/vinyl-fs/node_modules/through2/package.json +33 -0
  1253. package/node_modules/vinyl-fs/node_modules/through2/through2.js +96 -0
  1254. package/node_modules/vinyl-fs/package.json +61 -0
  1255. package/node_modules/window-size/LICENSE +21 -0
  1256. package/node_modules/window-size/README.md +45 -0
  1257. package/node_modules/window-size/cli.js +30 -0
  1258. package/node_modules/window-size/index.js +32 -0
  1259. package/node_modules/window-size/package.json +48 -0
  1260. package/node_modules/wrappy/LICENSE +15 -0
  1261. package/node_modules/wrappy/README.md +36 -0
  1262. package/node_modules/wrappy/package.json +29 -0
  1263. package/node_modules/wrappy/wrappy.js +33 -0
  1264. package/node_modules/xtend/.jshintrc +30 -0
  1265. package/node_modules/xtend/LICENSE +20 -0
  1266. package/node_modules/xtend/README.md +32 -0
  1267. package/node_modules/xtend/immutable.js +19 -0
  1268. package/node_modules/xtend/mutable.js +17 -0
  1269. package/node_modules/xtend/package.json +55 -0
  1270. package/node_modules/xtend/test.js +103 -0
  1271. package/package.json +8 -4
  1272. package/tsconfig.tsbuildinfo +1276 -741
  1273. package/lib/bootstrapper/index.d.ts +0 -57
  1274. package/lib/bootstrapper/index.js +0 -73
  1275. package/lib/tipg-api/runtime/requirements.txt +0 -2
  1276. /package/lib/{bootstrapper/runtime → database/bootstrapper_runtime}/handler.py +0 -0
@@ -0,0 +1,369 @@
1
+ ## Change Log
2
+
3
+ ### v2.4.2 (2016/03/03 19:59 +00:00)
4
+ - [5edb75a](https://github.com/gulpjs/vinyl-fs/commit/5edb75a10935fdc89e29d5e2413694aca77a3e85) 2.4.2 (@phated)
5
+ - [f445987](https://github.com/gulpjs/vinyl-fs/commit/f445987ce905659e62dcb27a8ad69f4ed2fb8198) upgrade glob-stream and remove path.normalize workaround (@phated)
6
+
7
+ ### v2.4.1 (2016/03/02 20:53 +00:00)
8
+ - [caac041](https://github.com/gulpjs/vinyl-fs/commit/caac041836436577d52468d32b9844c00d666265) 2.4.1 (@phated)
9
+ - [#154](https://github.com/gulpjs/vinyl-fs/pull/154) Don't pass `read` option from `src` to `through2` (@erikkemperman)
10
+
11
+ ### v2.4.0 (2016/03/01 22:40 +00:00)
12
+ - [926a9ad](https://github.com/gulpjs/vinyl-fs/commit/926a9ad3cf40d133120eb6f90d26234dc9f00138) 2.4.0 (@phated)
13
+ - [#160](https://github.com/gulpjs/vinyl-fs/pull/160) Allow specify dest sourcemaps option as string (@TrySound)
14
+ - [ebaffbe](https://github.com/gulpjs/vinyl-fs/commit/ebaffbecd642d3f8dd7d6edd6a19a1e768e7d2d1) Upgrade documentation (@TrySound)
15
+ - [7a0c94a](https://github.com/gulpjs/vinyl-fs/commit/7a0c94ae97de5e46392efe9a08ee3c68885dd7ba) Allow specify dest sourcemaps option as string (@TrySound)
16
+
17
+ ### v2.3.4 (2016/02/26 21:48 +00:00)
18
+ - [cd8a992](https://github.com/gulpjs/vinyl-fs/commit/cd8a992294228eea1d08957efc823794baa48fba) 2.3.4 (@phated)
19
+ - [8b50f49](https://github.com/gulpjs/vinyl-fs/commit/8b50f495c9b782d2afc64b38c0b7181a21c20b62) revert string handling from previous release, add support for SlowBuffer support (@phated)
20
+
21
+ ### v2.3.3 (2016/02/26 20:08 +00:00)
22
+ - [a75feda](https://github.com/gulpjs/vinyl-fs/commit/a75feda20131177a8f5a5008483f24169d0b3df3) 2.3.3 (@phated)
23
+ - [165149c](https://github.com/gulpjs/vinyl-fs/commit/165149c6a676ac867933173db28300cf3bab2a5f) support strings in writeFile (@phated)
24
+ - [3b67921](https://github.com/gulpjs/vinyl-fs/commit/3b67921fe5ddd925fc12acef2bd03777b0081dc3) Don't pass `read` option from `src` to `through2` (@erikkemperman)
25
+ - [5918841](https://github.com/gulpjs/vinyl-fs/commit/5918841bbd2c5256413b86c000e28ac3fff516e7) update changelog (@phated)
26
+
27
+ ### v2.3.2 (2016/02/26 01:17 +00:00)
28
+ - [6ed1793](https://github.com/gulpjs/vinyl-fs/commit/6ed179380da7caa4e3506f78b8864ea59164992e) 2.3.2 (@phated)
29
+ - [#151](https://github.com/gulpjs/vinyl-fs/pull/151) Feature metadata refactor (@gulpjs)
30
+ - [0cd8f22](https://github.com/gulpjs/vinyl-fs/commit/0cd8f2229d7788477a3fa2613dbf93e019503198) add docs for changes (@phated)
31
+ - [8d55978](https://github.com/gulpjs/vinyl-fs/commit/8d55978c3640ac25db8331ac4d7314579eb04da9) skip broken tests that were not testing the right thing (@phated)
32
+ - [550edd5](https://github.com/gulpjs/vinyl-fs/commit/550edd56f555240c36068ad060b2136213b135f6) test on latest node 4 instead of old ones (@phated)
33
+ - [6f4c2eb](https://github.com/gulpjs/vinyl-fs/commit/6f4c2eb396b78a91dcf41f5063eee27b66b35fe0) `sourcemaps` is not a valid option to gulp-sourcemaps (@phated)
34
+ - [011320b](https://github.com/gulpjs/vinyl-fs/commit/011320b1f988ecd7846ef04f7a597ee4b25d7285) add appveyor to test on windows & get tests to actually pass (@phated)
35
+ - [84cf3c2](https://github.com/gulpjs/vinyl-fs/commit/84cf3c2e1901bd700c089edac06ce0c75f8e701d) refactor and lots of tests for updating of metadata (@phated)
36
+ - [90a1189](https://github.com/gulpjs/vinyl-fs/commit/90a11894472d29abe9e34b80df0dfab9907f11e7) Make the tests pass again, some more refactoring of metadata handling (@erikkemperman)
37
+ - [35e9b3a](https://github.com/gulpjs/vinyl-fs/commit/35e9b3a68907167b51fa31edd0701ae24915fd84) Use filedescriptors where possible, refactor handling of stats metadata in dest (@piranna)
38
+ - [#150](https://github.com/gulpjs/vinyl-fs/pull/150) Update license year from initial date of release to current (@pra85)
39
+ - [ec48559](https://github.com/gulpjs/vinyl-fs/commit/ec485592d7a96562acc97ccd8b39a12cf17ed319) Update license year from initial date of release to current (@pra85)
40
+ - [#149](https://github.com/gulpjs/vinyl-fs/pull/149) chore: add NPM script for changelog (@T1st3)
41
+ - [0010bd3](https://github.com/gulpjs/vinyl-fs/commit/0010bd3b3c49e7b60e0d69dacdd8fd1b87a6c3dd) chore: add NPM script for changelog (@t1st3)
42
+ - [#148](https://github.com/gulpjs/vinyl-fs/pull/148) docs: add CHANGELOG.md (@T1st3)
43
+ - [da4cd0b](https://github.com/gulpjs/vinyl-fs/commit/da4cd0b449f8e9bd4bd0842fe2eb2b4eceea6c0b) docs: add changelog (@t1st3)
44
+
45
+ ### v2.3.1 (2016/01/14 09:13 +00:00)
46
+ - [7d2fcba](https://github.com/gulpjs/vinyl-fs/commit/7d2fcbaa49c78087fa975a4183fee38d422b9d4a) 2.3.1
47
+ - [#145](https://github.com/gulpjs/vinyl-fs/pull/145) Allow things to listen for data or readable events and avoid sinking in those cases (@gulpjs)
48
+ - [a7fae5a](https://github.com/gulpjs/vinyl-fs/commit/a7fae5a2e2f349237614fc3cb3f371b6f10f5df3) keep style consistent
49
+ - [1b02a46](https://github.com/gulpjs/vinyl-fs/commit/1b02a46aff9650afbfdf36aea386d177508d45fa) more updates, nextTick the removable of listeners in tests
50
+ - [3a0cf5b](https://github.com/gulpjs/vinyl-fs/commit/3a0cf5b098d4a4f2f407f7622cbccc4b29ddbf0e) DRY up listenerCount check
51
+ - [dcfc8b8](https://github.com/gulpjs/vinyl-fs/commit/dcfc8b8b2e93486703449960a69fef87b495a7e9) new sink removal impl
52
+ - [8cec809](https://github.com/gulpjs/vinyl-fs/commit/8cec80998516b20a6fc43c3e865b588a34236899) more tests, better tests
53
+ - [5167080](https://github.com/gulpjs/vinyl-fs/commit/5167080b13bfecd307da3b04be3b1892a9e8996c) harden event handling
54
+ - [ef0b8e0](https://github.com/gulpjs/vinyl-fs/commit/ef0b8e043eb3c3ff72f09d7597b4ae9ed105ba6d) Fix sink from preventing the readable event to fire on the underlying stream (@benurb)
55
+
56
+ ### v2.3.0 (2016/01/12 01:46 +00:00)
57
+ - [941b040](https://github.com/gulpjs/vinyl-fs/commit/941b040905616eb0408a44213d5efe010388cb9d) 2.3.0
58
+ - [#121](https://github.com/gulpjs/vinyl-fs/pull/121) Fix file descriptor exhaustion when streaming many files (@Klowner)
59
+ - [1f3af33](https://github.com/gulpjs/vinyl-fs/commit/1f3af33b1693b07fa2af5ed325ba8f0c0380b5f0) Add test for unbuffered file descriptor exhaustion issue (@Klowner)
60
+ - [38b032c](https://github.com/gulpjs/vinyl-fs/commit/38b032cd9b481a1c16d88f1b7968dd51c6a5ed15) Add 20 second timeout to dest's afterEach wipeOut task (@Klowner)
61
+ - [c63a797](https://github.com/gulpjs/vinyl-fs/commit/c63a79749a4b2ea500c519e1be5e073a87e4b940) Use lazystream for streamFile to avoid fd exhaustion (@Klowner)
62
+ - [00ece7e](https://github.com/gulpjs/vinyl-fs/commit/00ece7ef6b794fd1999695fde2d88bba8d69f5d0) avoid else-if and isFatal variable
63
+ - [6b9912e](https://github.com/gulpjs/vinyl-fs/commit/6b9912e14a3a7504bbba9d176c04b35e69208b64) get max statements warning for future cleanup
64
+ - [a2be0d6](https://github.com/gulpjs/vinyl-fs/commit/a2be0d69de86af9e09ab1193b740d1a0736009fc) ESLint and JSCS plus fixup (@pdehaan)
65
+ - [24119a8](https://github.com/gulpjs/vinyl-fs/commit/24119a862ad062f39ed15db767feff459843c2d8) Rework writeStream to prevent issue with futimes (@Klowner)
66
+ - [17ef52e](https://github.com/gulpjs/vinyl-fs/commit/17ef52ec014ea6a72abda35d104e92786904f92b) Add test for streaming with buffering disabled (@Klowner)
67
+ - [6934485](https://github.com/gulpjs/vinyl-fs/commit/69344858edb85e7c904621fa5d45782aa9825878) drastically improve docs
68
+ - [80add99](https://github.com/gulpjs/vinyl-fs/commit/80add99101bd41f5161ff90c8b4a9b3ba496c73d) big timeout for slow node
69
+ - [d553e74](https://github.com/gulpjs/vinyl-fs/commit/d553e7474ebb65b89e496dfc3916292b59eec4c2) Send options to through2 (@vineethawal)
70
+ - [#134](https://github.com/gulpjs/vinyl-fs/pull/134) Make tests ignore gid (@gulpjs)
71
+ - [e33b632](https://github.com/gulpjs/vinyl-fs/commit/e33b632ffb139599922bc414f76e4c5b81c82f70) adjust realMode method to avoid gid in the parse - fixes #103
72
+ - [4adb4d9](https://github.com/gulpjs/vinyl-fs/commit/4adb4d9d35a148d0c2507a5f06946951b54d443e) setgid on test directory - make travis fail as per #103
73
+ - [#130](https://github.com/gulpjs/vinyl-fs/pull/130) #129 - Update documentation to more clearly explain what happens for default base option values. (@treshugart)
74
+ - [#126](https://github.com/gulpjs/vinyl-fs/pull/126) read from the stream once we finish processing a file, this avoids highWaterMark being hit - add test (@gulpjs)
75
+ - [df97b14](https://github.com/gulpjs/vinyl-fs/commit/df97b1482200e7bc5dd01a49f0bdedeed2b6bd08) sink the saveStream on nextTick to start flowing and avoid highWaterMark - add tests
76
+ - [#133](https://github.com/gulpjs/vinyl-fs/pull/133) fix TypeError when the dest sourcemaps option is a boolean (@chocolateboy)
77
+ - [df874af](https://github.com/gulpjs/vinyl-fs/commit/df874af6c3dce1b8f008230b06f3ef9ef0e30d1a) add test for the boolean (true) source-map option (@chocolateboy)
78
+ - [6ab48dd](https://github.com/gulpjs/vinyl-fs/commit/6ab48dd66899141d1c8e7f14e1ccb1ccc62c261e) fix TypeError when the dest sourcemaps option is a boolean (@chocolateboy)
79
+ - [edb9caa](https://github.com/gulpjs/vinyl-fs/commit/edb9caa91e57690ddaace09aafb863f5bbac3ed8) #129 - Update documentation to more clearly explain what happens for default base option values. (@treshugart)
80
+ - [#125](https://github.com/gulpjs/vinyl-fs/pull/125) Use `fs.futimes` to retain sub-second precision in `atime` and `mtime` (@erikkemperman)
81
+ - [e3849f2](https://github.com/gulpjs/vinyl-fs/commit/e3849f2a19fa967842506fe4d34eeb8f6565464b) Use `fs.futimes` to retain sub-second precision in `atime` and `mtime` (@erikkemperman)
82
+ - [be8d1fd](https://github.com/gulpjs/vinyl-fs/commit/be8d1fd878ae2c6332851aa15a669a1cd128c6cb) guarantee 5.2.0 glob-stream and update test
83
+ - [#119](https://github.com/gulpjs/vinyl-fs/pull/119) Check if `atime` Date object is invalid and set a new one explicitly (@NodeOS)
84
+ - [#122](https://github.com/gulpjs/vinyl-fs/pull/122) Change writeStream callbacks from cb to complete (@Klowner)
85
+ - [8f93a48](https://github.com/gulpjs/vinyl-fs/commit/8f93a48c98ff75bab09bed47b989c9c1dbb5aaa0) Change writeStream callbacks from cb to complete (@Klowner)
86
+ - [f575377](https://github.com/gulpjs/vinyl-fs/commit/f5753770962df157023e37dfadca2dcce6aa18b5) Check if `atime` Date object is invalid and set a new one explicitly (@piranna)
87
+
88
+ ### v2.2.1 (2015/10/20 01:06 +00:00)
89
+ - [a28ba42](https://github.com/gulpjs/vinyl-fs/commit/a28ba42d87eeaecc2ae3de9174270019fab76fe3) 2.2.1
90
+ - [7f539dd](https://github.com/gulpjs/vinyl-fs/commit/7f539dd562e501e904ab6401892f6f4c68a4da25) simplify utimes helper
91
+ - [c2beec8](https://github.com/gulpjs/vinyl-fs/commit/c2beec86ddab2ef51a3a6fa7077907c74d1eadd7) fix tests for invalid dates
92
+ - [97ff9ce](https://github.com/gulpjs/vinyl-fs/commit/97ff9ce60efba49a3d6cafcece3c9dce95aa670a) Test for invalid atime and mtime (@piranna)
93
+ - [624d7f5](https://github.com/gulpjs/vinyl-fs/commit/624d7f59090a4ae8e7e5c83178b199e13973c635) [Fix] Ignore atime and mtime if they are invalid (@piranna)
94
+
95
+ ### v2.2.0 (2015/10/16 02:02 +00:00)
96
+ - [bf7edd3](https://github.com/gulpjs/vinyl-fs/commit/bf7edd37cb0207951b75879d4e07402c51ac8770) 2.2.0
97
+ - [039d689](https://github.com/gulpjs/vinyl-fs/commit/039d68920cc5bde6f0f12375daee2713260a1ecf) make tests pass
98
+ - [6f36372](https://github.com/gulpjs/vinyl-fs/commit/6f36372b9d0b0bf10087b3ac863f858b15e54bb9) Test for vynil stat not modified (FAIL) (@piranna)
99
+ - [dbc606b](https://github.com/gulpjs/vinyl-fs/commit/dbc606bb091008215fd586e4a1eee6ec8bdb22d3) Don't modify vynil stat when atime is not defined (@piranna)
100
+ - [573b8b6](https://github.com/gulpjs/vinyl-fs/commit/573b8b656032e1b486f7e4bca9f5916ceb6def54) Tests for atime and mtime (@piranna)
101
+ - [d7a53d5](https://github.com/gulpjs/vinyl-fs/commit/d7a53d5f557c23aa26d9d5d179645288204a6faa) Style improvements (@piranna)
102
+ - [9237100](https://github.com/gulpjs/vinyl-fs/commit/92371008a2bafa74ba87450b57578d0ace17b194) Fix mtime test to 1 second resolution as Node.js does (@piranna)
103
+ - [801da1c](https://github.com/gulpjs/vinyl-fs/commit/801da1c04696736df9c9c2ad47645faadab970d2) Test for mtime (fail on second decimals) (@piranna)
104
+ - [def6815](https://github.com/gulpjs/vinyl-fs/commit/def68150d0e42ad870afe314cd3b7cea760e9c48) Updated style & made utility function (@piranna)
105
+ - [d55fd11](https://github.com/gulpjs/vinyl-fs/commit/d55fd119718a3166cf3f76362a896bfa8e91427d) Made atime optional ("cpio" don't have it, and sometimes "tar" too) (@piranna)
106
+ - [9a10c15](https://github.com/gulpjs/vinyl-fs/commit/9a10c15aeb1ef3f0b3c1e39c7c7c94f5295449d2) Set utimes of files if they are provided (@piranna)
107
+ - [#108](https://github.com/gulpjs/vinyl-fs/pull/108) Fix links, spacing in README (@moshen)
108
+ - [c603138](https://github.com/gulpjs/vinyl-fs/commit/c603138077df416cf7892f82a2e3a91daa3456fd) Fix links, spacing in README (@moshen)
109
+ - [#105](https://github.com/gulpjs/vinyl-fs/pull/105) updated to test on nodejs 4 (@ckross01)
110
+ - [3148943](https://github.com/gulpjs/vinyl-fs/commit/3148943032a834ad1c82c951576e735d4824d6f0) updated to test on nodejs 4 (@ckross01)
111
+ - [#102](https://github.com/gulpjs/vinyl-fs/pull/102) Update tests to 'strict mode' (@OnkelTem)
112
+ - [85c1286](https://github.com/gulpjs/vinyl-fs/commit/85c128604b521d2e465f1e78548d128c95f4719c) Update tests to 'strict mode' (@OnkelTem)
113
+
114
+ ### v2.1.1 (2015/09/28 09:55 +00:00)
115
+ - [812c696](https://github.com/gulpjs/vinyl-fs/commit/812c696709a16f0de2e06e03b5fe41a45fbfe4f2) 2.1.1 (@contra)
116
+ - [0a4caf6](https://github.com/gulpjs/vinyl-fs/commit/0a4caf61f5745e3a0f368be9d285d006fd7cbf4c) more elegant sourcemap handling, more docs (@contra)
117
+ - [0ac5a2c](https://github.com/gulpjs/vinyl-fs/commit/0ac5a2cb072111917e561c655441aa10a8ee1718) only pass buffer files to sourcemaps (@contra)
118
+
119
+ ### v2.1.0 (2015/09/27 22:01 +00:00)
120
+ - [dbf2a25](https://github.com/gulpjs/vinyl-fs/commit/dbf2a25dc9273e1d5bfa592e6b8564d245294e55) 2.1.0 (@contra)
121
+ - [#100](https://github.com/gulpjs/vinyl-fs/pull/100) allow a function to be used as value for the overwrite option - closes #68 (@gulpjs)
122
+ - [#99](https://github.com/gulpjs/vinyl-fs/pull/99) add option to strip BOM, default to true - closes #83 (@gulpjs)
123
+ - [b966d51](https://github.com/gulpjs/vinyl-fs/commit/b966d517906116021b5cec4ab7d41bbe8dd23168) update docs
124
+ - [13c853a](https://github.com/gulpjs/vinyl-fs/commit/13c853a1ae0a829f0fd33347ed791f9b92593d18) allow a function to be used as value for the overwrite option - closes #68
125
+ - [870551c](https://github.com/gulpjs/vinyl-fs/commit/870551c43d69547accd4b4918142b06926f20e99) add option to strip BOM, default to true - closes #83
126
+ - [50c9e33](https://github.com/gulpjs/vinyl-fs/commit/50c9e33149a7f365d039cd0115526c79145a5534) more sourcemaps docs (@contra)
127
+
128
+ ### v2.0.0 (2015/09/25 22:43 +00:00)
129
+ - [de7bf7b](https://github.com/gulpjs/vinyl-fs/commit/de7bf7ba79acf33610d8d8e58626dc39d8ed2611) 2.0.0 (@contra)
130
+ - [59620dc](https://github.com/gulpjs/vinyl-fs/commit/59620dce078d0a458d96ba0c82416f24b82cb95f) update vinyl (@contra)
131
+
132
+ ### v1.0.0 (2015/03/01 23:10 +00:00)
133
+ - [db025fe](https://github.com/gulpjs/vinyl-fs/commit/db025fe85b190414b28512c1f5ef08662564d4eb) 1.0.0 (@contra)
134
+ - [c7195ed](https://github.com/gulpjs/vinyl-fs/commit/c7195ed3a7c93b5206ba9a1035e84da479888f4e) 1.0.0 (@contra)
135
+ - [4a70dd6](https://github.com/gulpjs/vinyl-fs/commit/4a70dd63386db8abfeeb985630406e1a39f776a5) update dep, remove engineStrict (@contra)
136
+ - [#59](https://github.com/gulpjs/vinyl-fs/pull/59) Implemented `overwrite` option in `dest()` (@derekslife)
137
+ - [c4750b2](https://github.com/gulpjs/vinyl-fs/commit/c4750b2efccd840e4ae840dc55b01cb7051f2f48) Encapsulated error filtering logic into `isErrorFatal` func (@derekslife)
138
+ - [32fc5c8](https://github.com/gulpjs/vinyl-fs/commit/32fc5c805ec6209c3d2145036ff2eabff79845be) Updated docs for `overwrite` option (@derekslife)
139
+ - [5572793](https://github.com/gulpjs/vinyl-fs/commit/5572793954b63e1ec00983bad716af01e02476ef) Implemented `overwrite` option in `dest()` (@derekslife)
140
+ - [2dfe290](https://github.com/gulpjs/vinyl-fs/commit/2dfe2901cc329f5db86d0f2272d4292a2078d5a3) update watch to fix a bug with .remove (@contra)
141
+ - [#57](https://github.com/gulpjs/vinyl-fs/pull/57) Follow symlinks (@valeriangalliat)
142
+ - [a4ea945](https://github.com/gulpjs/vinyl-fs/commit/a4ea945cf04660fc007266c87caa43d345a5b1bc) Follow symlinks (@valeriangalliat)
143
+ - [041de1b](https://github.com/gulpjs/vinyl-fs/commit/041de1b6f20434a7bd6146fdf0a3425dfe301f96) update should (@contra)
144
+ - [#55](https://github.com/gulpjs/vinyl-fs/pull/55) Add `passthrough` option, fixes #25, fixes gulpjs/gulp#840 (@UltCombo)
145
+ - [972c8ad](https://github.com/gulpjs/vinyl-fs/commit/972c8ad3ac377ff7b4a03edeb04f52409d383dd4) Code style (@UltCombo)
146
+ - [b9629ea](https://github.com/gulpjs/vinyl-fs/commit/b9629ea6e9b9b797b518ab8192f4a2ec446ea325) Add `passthrough` option, fixes #25, fixes gulpjs/gulp#840 (@UltCombo)
147
+ - [318a983](https://github.com/gulpjs/vinyl-fs/commit/318a983832408ddc5500b27cfcb8c5cb07c8af11) new glob-watcher (@contra)
148
+ - [#53](https://github.com/gulpjs/vinyl-fs/pull/53) Remove unnecessary `coveralls` from devDependencies (@shinnn)
149
+ - [1ccdc53](https://github.com/gulpjs/vinyl-fs/commit/1ccdc53e22e2449a8b1f9fdc9dfbe7cd526f1dec) remove unnecessary `coveralls` from devDeps (@shinnn)
150
+ - [#52](https://github.com/gulpjs/vinyl-fs/pull/52) Update dotfiles and readme (@shinnn)
151
+ - [87c36ed](https://github.com/gulpjs/vinyl-fs/commit/87c36ede9da5e1508e62a984da4ebc9c8412f6d2) introduce istanbul-coveralls (@shinnn)
152
+ - [fb1a0fa](https://github.com/gulpjs/vinyl-fs/commit/fb1a0fa6bf4028f54629014f89fee0dd148945b6) use sag badges instead of png badges (@shinnn)
153
+ - [5e1b24b](https://github.com/gulpjs/vinyl-fs/commit/5e1b24b4d2a811a02ae7b6449d4f0de778bbe4ef) update dotfiles (@shinnn)
154
+ - [96c721f](https://github.com/gulpjs/vinyl-fs/commit/96c721f07b59964849b15d737ab8abaf52377312) clean up empty object allocation (@contra)
155
+ - [6e97447](https://github.com/gulpjs/vinyl-fs/commit/6e97447dab806b1da7df52d9d4da337d49fe71cb) logic consolidation (@contra)
156
+ - [6f8f045](https://github.com/gulpjs/vinyl-fs/commit/6f8f0459e51fe4c1065a0e693fbcdc26776b6e78) more style normalization (@contra)
157
+ - [141ff43](https://github.com/gulpjs/vinyl-fs/commit/141ff43302dec6535d086cf27d538530161952c5) style normalization (@contra)
158
+ - [500f5cf](https://github.com/gulpjs/vinyl-fs/commit/500f5cf9100256db5ea2d180773385bacaca251e) logic cleanups (@contra)
159
+ - [f081c21](https://github.com/gulpjs/vinyl-fs/commit/f081c21cb264164fee8896056bd0337f734c1904) code cleanups in dest logic (@contra)
160
+ - [2692230](https://github.com/gulpjs/vinyl-fs/commit/269223036d24fe700dba8b5b9f04ad4023eadb2a) fix dest memory leak when writing streams (@contra)
161
+ - [3d2c6c0](https://github.com/gulpjs/vinyl-fs/commit/3d2c6c0350407b3b98c7d2e7950f999f3832b2de) report errors preparing write on symlinks (@contra)
162
+ - [4481668](https://github.com/gulpjs/vinyl-fs/commit/448166864ba6c973055eb205575c3e392cf0f39a) add dirMode param to dest and symlink, closes #36 (@contra)
163
+ - [#49](https://github.com/gulpjs/vinyl-fs/pull/49) Add symlink support (Fixes #42) (@JonAbrams)
164
+ - [558f374](https://github.com/gulpjs/vinyl-fs/commit/558f3744489d5e671f4172453b24ba62bfd9b102) new glob ordering (@contra)
165
+ - [5876564](https://github.com/gulpjs/vinyl-fs/commit/587656487d7cd8a56cadd57d311d28af820377a0) Match function to prepareWrite.js filename (@JonAbrams)
166
+ - [21d7528](https://github.com/gulpjs/vinyl-fs/commit/21d7528f04afbc88529a69e81e4c64823edbbfe9) Move and rename to prepareWrite.js (@JonAbrams)
167
+ - [b447d5e](https://github.com/gulpjs/vinyl-fs/commit/b447d5ea22bbd9a54bcdceccac8e94c0bd0e18e7) Fix jshint warnings (@JonAbrams)
168
+ - [15af3e5](https://github.com/gulpjs/vinyl-fs/commit/15af3e58512c2cdfb00fcc6f8850cfffa69ef431) De-dup common code between dest + symlink (#42) (@JonAbrams)
169
+ - [4392605](https://github.com/gulpjs/vinyl-fs/commit/439260503481296ac8f3482ee901434fd7e3969e) Add symlink support (Fixes #42) (@JonAbrams)
170
+ - [#47](https://github.com/gulpjs/vinyl-fs/pull/47) option.since implementation (@doowb)
171
+ - [8cca620](https://github.com/gulpjs/vinyl-fs/commit/8cca62066c07ce4cc75f390aeb523c228cd887c3) updates per @contra (@doowb)
172
+ - [cec31c6](https://github.com/gulpjs/vinyl-fs/commit/cec31c66d03c0e9c57b6e7223ea2e1029b0b5110) docs (@doowb)
173
+ - [3d440b3](https://github.com/gulpjs/vinyl-fs/commit/3d440b3dfe745261239071335b3839a8a12460b7) check for instance of Date (@doowb)
174
+ - [44cc193](https://github.com/gulpjs/vinyl-fs/commit/44cc193a9984a012f93082fa940516ad6249023f) since implementation (@doowb)
175
+ - [#44](https://github.com/gulpjs/vinyl-fs/pull/44) Swap defaults dependency with object-assign. (@ben-eb)
176
+ - [c07074c](https://github.com/gulpjs/vinyl-fs/commit/c07074c835cae9361973c1046a3f0522565a919d) Swap defaults dep with object-assign. (@ben-eb)
177
+
178
+ ### v0.3.14 (2015/09/21 23:57 +00:00)
179
+ - [5b056f6](https://github.com/gulpjs/vinyl-fs/commit/5b056f66c476ff32687c172d5fe79eaf47b2e80e) update object-assign dep (@contra)
180
+ - [27983ef](https://github.com/gulpjs/vinyl-fs/commit/27983ef0114ceb16abd82a5c47557cb0be95ae62) merge (@contra)
181
+ - [7ca959e](https://github.com/gulpjs/vinyl-fs/commit/7ca959e8ac89034e0e09714da76eb06b7b55d61c) remove watch #92 (@contra)
182
+ - [#90](https://github.com/gulpjs/vinyl-fs/pull/90) Updated merge-stream version to 1.0.0 (@davidbarrows)
183
+ - [22e5e13](https://github.com/gulpjs/vinyl-fs/commit/22e5e13f8edf399cf286f5d908a1bd6766308408) Updated merge-stream version to 1.0.0 (@davidbarrows)
184
+ - [#88](https://github.com/gulpjs/vinyl-fs/pull/88) fix wrong event name in README.md (@kketch)
185
+ - [65445ec](https://github.com/gulpjs/vinyl-fs/commit/65445ec16f1546b268c6a66c2ee798baa94883c8) fix wrong event name in README.md (@kketch)
186
+ - [#85](https://github.com/gulpjs/vinyl-fs/pull/85) Add symlink passthrough with `followSymlinks` (@Klowner)
187
+ - [9f5f6e8](https://github.com/gulpjs/vinyl-fs/commit/9f5f6e8770b4e1364381bfdc832a1c4aacd68274) Add symlink copy with `followSymlinks` option (@Klowner)
188
+ - [#82](https://github.com/gulpjs/vinyl-fs/pull/82) symlink opt.base should be the same as dest (@stevemao)
189
+ - [0b3eed2](https://github.com/gulpjs/vinyl-fs/commit/0b3eed2d84a7b8c134b990a2234916b24e54906b) symlink opt.base should be the same as dest (@stevemao)
190
+ - [3e2a5ef](https://github.com/gulpjs/vinyl-fs/commit/3e2a5ef63c98b9ef44b3d05cdc6c03bdb9c2392b) base can be a function now, also add better error messaging. closes #78 (@contra)
191
+ - [#81](https://github.com/gulpjs/vinyl-fs/pull/81) use valid semver range for `engine` (@silverwind)
192
+ - [69090c4](https://github.com/gulpjs/vinyl-fs/commit/69090c41d79bcb7c492fab6c4ac1a7788a0e8dc7) use valid semver range for `engine` (@silverwind)
193
+ - [65090b8](https://github.com/gulpjs/vinyl-fs/commit/65090b81b98c8ed80fda247495d8015701d62813) Merge branch 'master' of https://github.com/wearefractal/vinyl-fs (@contra)
194
+ - [b481130](https://github.com/gulpjs/vinyl-fs/commit/b48113066f04fa5a240770132fbf1e57af12687c) fix filter-since (@contra)
195
+ - [#79](https://github.com/gulpjs/vinyl-fs/pull/79) add missing test for f7516ebac102104ad0f39437f7739bf5aedec165 (@stevemao)
196
+ - [8e8135c](https://github.com/gulpjs/vinyl-fs/commit/8e8135c3f99c4669129295e65b54581c45535191) update vinyl-filter-since (@contra)
197
+ - [cb86d86](https://github.com/gulpjs/vinyl-fs/commit/cb86d86deefa593f3099d2494e06cbc59b69e9bc) add missing test for f7516ebac102104ad0f39437f7739bf5aedec165 (@stevemao)
198
+ - [a8161c8](https://github.com/gulpjs/vinyl-fs/commit/a8161c87f38d465497c63ec3158f0f033868b60b) update vinyl filter since (@contra)
199
+ - [99db7de](https://github.com/gulpjs/vinyl-fs/commit/99db7de8f0485c5ca158c79126b53b8fdab9d821) add sourcemaps to dest, clear up some dead src code now that empty arrays arent valid globs, dep updates (@contra)
200
+ - [d32876f](https://github.com/gulpjs/vinyl-fs/commit/d32876f8df5a8a28f71b476ae907644ab5d35c07) update deps (@contra)
201
+ - [#77](https://github.com/gulpjs/vinyl-fs/pull/77) Improvements (@stevemao)
202
+ - [f7516eb](https://github.com/gulpjs/vinyl-fs/commit/f7516ebac102104ad0f39437f7739bf5aedec165) Expose `options.base` for `dest` (@stevemao)
203
+ - [435c401](https://github.com/gulpjs/vinyl-fs/commit/435c40193acebdaca62a9d688ceec5875b1ece15) test on iojs and 0.12 (@stevemao)
204
+ - [a3b1aa6](https://github.com/gulpjs/vinyl-fs/commit/a3b1aa6d5446760bf18de77ebf2aa199bef9f9b0) Make readme more consistent (@stevemao)
205
+ - [#75](https://github.com/gulpjs/vinyl-fs/pull/75) Fix default option in README (@stevemao)
206
+ - [a0820f4](https://github.com/gulpjs/vinyl-fs/commit/a0820f4ec4737ab826999cde2dda6ee0dae2db03) Fix default option in README (@stevemao)
207
+ - [812d0e6](https://github.com/gulpjs/vinyl-fs/commit/812d0e6ef55ac7ecd6e7dc83ef6f58e324837354) add new glob tests, empty string is a failing glob now. https://github.com/google/material-design-lite/issues/790 (@contra)
208
+ - [1b7322d](https://github.com/gulpjs/vinyl-fs/commit/1b7322d800008095596da9472801a2ddabcdf938) Merge branch 'master' of https://github.com/wearefractal/vinyl-fs (@contra)
209
+ - [5af3ed8](https://github.com/gulpjs/vinyl-fs/commit/5af3ed844d4dac6a84cf836aa09373ad2d3193dd) fix dir symlinks on windows, closes #74 (@contra)
210
+ - [#73](https://github.com/gulpjs/vinyl-fs/pull/73) using is-valid-glob module to handle nested arrays properly (@doowb)
211
+ - [0a6bcb1](https://github.com/gulpjs/vinyl-fs/commit/0a6bcb15067f2ac0b534d17c0f66aa9616c2bd54) using is-valid-glob module to handle nested arrays properly (@doowb)
212
+ - [baf97e1](https://github.com/gulpjs/vinyl-fs/commit/baf97e1f66caa4f1a9f9630620233c8c927f7509) passing options through to readers is still a good idea, so not a full revert. #72 (@contra)
213
+ - [f6ead3c](https://github.com/gulpjs/vinyl-fs/commit/f6ead3cec64c27a86f2a2e497d75e8a4f235339c) remove stripBOM flag, document BOM stripping. #72 (@contra)
214
+ - [#71](https://github.com/gulpjs/vinyl-fs/pull/71) Update vinyl to 0.5.x (@lijunle)
215
+ - [3a44b5d](https://github.com/gulpjs/vinyl-fs/commit/3a44b5da290c1d0279381a4d13f8816bc2ebb014) Update vinyl to 0.5.x (@lijunle)
216
+ - [#69](https://github.com/gulpjs/vinyl-fs/pull/69) update license attribute (@pgilad)
217
+ - [23640fd](https://github.com/gulpjs/vinyl-fs/commit/23640fde7378465625b2e0579bb661c7501b0e04) update license attribute (@pgilad)
218
+ - [60685eb](https://github.com/gulpjs/vinyl-fs/commit/60685eb89e57f61c4462855532f43d75f0a616db) fix problem where you couldnt catch singular glob errors. add sourcemaps into src (@contra)
219
+ - [12dec99](https://github.com/gulpjs/vinyl-fs/commit/12dec99a99af362ddfa2a0f7af7a39063803f182) dep updates (@contra)
220
+ - [#63](https://github.com/gulpjs/vinyl-fs/pull/63) export `filterSince` to `vinyl-filter-since` (@tunnckoCore)
221
+ - [9bbf989](https://github.com/gulpjs/vinyl-fs/commit/9bbf989151a912307686d36dc6ee4ef01cdbd38f) bump to `vinyl-filter-since@v2` (@tunnckoCore)
222
+ - [1a788e8](https://github.com/gulpjs/vinyl-fs/commit/1a788e826951939e81ab1a2505f2aaf2a9cde264) Merge github.com:wearefractal/vinyl-fs (@tunnckoCore)
223
+ - [#65](https://github.com/gulpjs/vinyl-fs/pull/65) Remove realMode equality test on special bit test (@Meroje)
224
+ - [627ace7](https://github.com/gulpjs/vinyl-fs/commit/627ace7702895c35f313d439c357e6387961d05a) Remove realMode equality test on special bit test (@Meroje)
225
+ - [fd9388d](https://github.com/gulpjs/vinyl-fs/commit/fd9388db1a15afe1e3c748d3859ab969c34ba1db) merge in blaines changes (@contra)
226
+ - [fda2a71](https://github.com/gulpjs/vinyl-fs/commit/fda2a71b8d26580f8dc564636005f78514e2b791) fix some tests, update deps (@contra)
227
+ - [#64](https://github.com/gulpjs/vinyl-fs/pull/64) switch to glob-watcher 2.0 (@phated)
228
+ - [6524088](https://github.com/gulpjs/vinyl-fs/commit/65240883f15b9f0aa792735a2f358c3ee5761c51) switch to glob-watcher 2.0
229
+ - [5d9f058](https://github.com/gulpjs/vinyl-fs/commit/5d9f0581b0d3985d135b507086dbd464e4aaafb9) export `filterSince` to `vinyl-filter-since` (@tunnckoCore)
230
+ - [#62](https://github.com/gulpjs/vinyl-fs/pull/62) Fix mode comparison (@Meroje)
231
+ - [ba57ce7](https://github.com/gulpjs/vinyl-fs/commit/ba57ce76e978850f79f78bba9b8aa1a73ac5fb2f) Test for chmod with additional bits (@Meroje)
232
+ - [0c3516b](https://github.com/gulpjs/vinyl-fs/commit/0c3516bd67ca56810f3e587cda12584caced223e) Fix mode comparison (@Meroje)
233
+
234
+ ### v0.3.13 (2014/11/13 23:18 +00:00)
235
+ - [315e76a](https://github.com/gulpjs/vinyl-fs/commit/315e76a248e9d150f228e4ef50b61de15dc55123) 0.3.13 (@contra)
236
+ - [ac5b449](https://github.com/gulpjs/vinyl-fs/commit/ac5b449ec49b4de5f10313d31fd8e8effed0421b) switch off lodash to reduce size (@contra)
237
+
238
+ ### v0.3.12 (2014/11/13 23:01 +00:00)
239
+ - [84a3fe9](https://github.com/gulpjs/vinyl-fs/commit/84a3fe96dd162041eac9c9d4465cc1369659027a) 0.3.12 (@contra)
240
+ - [b963614](https://github.com/gulpjs/vinyl-fs/commit/b963614bf206862f9bed60bab16ed7038f554c42) exclude files to save space (@contra)
241
+
242
+ ### v0.3.11 (2014/11/04 18:56 +00:00)
243
+ - [5ee1404](https://github.com/gulpjs/vinyl-fs/commit/5ee1404cc25b54fc338e6f84909e87be2eb09e84) 0.3.11 (@contra)
244
+ - [#41](https://github.com/gulpjs/vinyl-fs/pull/41) use default mode for new files and directories (@joachimgit)
245
+ - [99661c5](https://github.com/gulpjs/vinyl-fs/commit/99661c5881cf2b22545be688c68318c6b7541df1) use default mode for new files and directories (@joachimgit)
246
+ - [c0cf9d0](https://github.com/gulpjs/vinyl-fs/commit/c0cf9d0663460881f9ee97310f44e382d9a09fbe) small style fix (@contra)
247
+
248
+ ### v0.3.10 (2014/10/22 06:48 +00:00)
249
+ - [c6e7433](https://github.com/gulpjs/vinyl-fs/commit/c6e7433a93d052905611680dc3f6f87c8e629376) 0.3.10 (@contra)
250
+ - [793f538](https://github.com/gulpjs/vinyl-fs/commit/793f538beaa275a6d31f67e5499cb96949654699) remove duplexer2 which was broken (@contra)
251
+ - [1e3b338](https://github.com/gulpjs/vinyl-fs/commit/1e3b33883c5a9efbb28ec9141564bdfe6292c716) end false (@contra)
252
+
253
+ ### v0.3.9 (2014/10/09 18:34 +00:00)
254
+ - [37c648d](https://github.com/gulpjs/vinyl-fs/commit/37c648da6826b36600f48c3002a03b1248d4f58e) 0.3.9 (@contra)
255
+ - [6bba193](https://github.com/gulpjs/vinyl-fs/commit/6bba193c8395d2e32ccfa332684bec1bdd52d4ad) empty arrays = dead stream, closes #40 (@contra)
256
+ - [3e3d371](https://github.com/gulpjs/vinyl-fs/commit/3e3d371c41a9e3e50a9af9ad5f5c8634744dcd6d) fix that potentially closes #25 (@contra)
257
+
258
+ ### v0.3.8 (2014/09/29 22:16 +00:00)
259
+ - [0507aed](https://github.com/gulpjs/vinyl-fs/commit/0507aed94a1902ee61a45f77caf059669fb7ea76) 0.3.8 (@contra)
260
+ - [4d95e2e](https://github.com/gulpjs/vinyl-fs/commit/4d95e2e19f35045ca5ec66d697167078696bfc86) lstat (@contra)
261
+ - [#37](https://github.com/gulpjs/vinyl-fs/pull/37) Docs link fix (@yuvilio)
262
+ - [b9f3053](https://github.com/gulpjs/vinyl-fs/commit/b9f3053a8640839c2098f43066d06cc11d2e6196) Docs link fix (@yuvilio)
263
+
264
+ ### v0.3.7 (2014/08/29 07:10 +00:00)
265
+ - [1a5efe8](https://github.com/gulpjs/vinyl-fs/commit/1a5efe8d1f7d698691103f2fdc21e07dc1bd5634) 0.3.7 (@contra)
266
+ - [97d3195](https://github.com/gulpjs/vinyl-fs/commit/97d3195464893ad526f40a6355c792d35ab562e6) update deps (@contra)
267
+ - [#34](https://github.com/gulpjs/vinyl-fs/pull/34) Chmod mode to match the vinyl object (@oconnore)
268
+ - [a73458e](https://github.com/gulpjs/vinyl-fs/commit/a73458e33aba6de1ee2852a1374da7e8c8225e22) reduce nesting per review
269
+ - [cf8e5fd](https://github.com/gulpjs/vinyl-fs/commit/cf8e5fd59070beedf88936527935168d18afbbfc) Code review changes
270
+ - [e5684ac](https://github.com/gulpjs/vinyl-fs/commit/e5684ace84d0d226c382a77d505e1517c6f4c7a3) Check final mode in no-chmod test
271
+ - [dc8e769](https://github.com/gulpjs/vinyl-fs/commit/dc8e7691430555c4fe419825306426062c3e03e8) Fix a fall through error
272
+ - [b20d11b](https://github.com/gulpjs/vinyl-fs/commit/b20d11bbbaf9e244e16af7eabb7c98af213e7a89) Test stat/chmod approach with sinon stubs
273
+ - [126164a](https://github.com/gulpjs/vinyl-fs/commit/126164a4f2056d3cb1996c39562a2a008153975d) Test if the file should be chmod'ed
274
+
275
+ ### v0.3.6 (2014/08/02 04:56 +00:00)
276
+ - [7256498](https://github.com/gulpjs/vinyl-fs/commit/72564989a5dc17468e645f00ae811f8614dec17b) 0.3.6 (@contra)
277
+ - [dc9d723](https://github.com/gulpjs/vinyl-fs/commit/dc9d7230a4173792b0296e54a9560b44103d50c2) update vinyl dep (@contra)
278
+ - [387c47b](https://github.com/gulpjs/vinyl-fs/commit/387c47b6fda5f0af8f95b93e513bc130bee3cdd3) Satisfy the bot.
279
+ - [5887067](https://github.com/gulpjs/vinyl-fs/commit/58870677ff458a3e855ac87f2d165f43c4aafd2e) Chmod mode to match the vinyl object
280
+
281
+ ### v0.3.5 (2014/07/30 23:04 +00:00)
282
+ - [22edfd2](https://github.com/gulpjs/vinyl-fs/commit/22edfd20dc2fbad888fedd022d02fdf933bf30b6) 0.3.5 (@contra)
283
+ - [20a7a05](https://github.com/gulpjs/vinyl-fs/commit/20a7a0525b80cf0884cf73bee9690e1dab17a2bb) fix dep tree (@contra)
284
+ - [#33](https://github.com/gulpjs/vinyl-fs/pull/33) Display the invalid glob in error message (@kevinwestern)
285
+ - [726b3a1](https://github.com/gulpjs/vinyl-fs/commit/726b3a1ac771c90a8186828e3eb37ad9f4832df8) Display the invalid glob in error message (@kevinwestern)
286
+
287
+ ### v0.3.4 (2014/06/27 06:07 +00:00)
288
+ - [a83eb9a](https://github.com/gulpjs/vinyl-fs/commit/a83eb9a53aa0c4e50306a20845111ccda276146d) 0.3.4 (@contra)
289
+ - [4f4a3f3](https://github.com/gulpjs/vinyl-fs/commit/4f4a3f363cf491de80afdcf58f9926d2bfeb408e) resume stream (@contra)
290
+
291
+ ### v0.3.3 (2014/06/26 16:35 +00:00)
292
+ - [52ce21b](https://github.com/gulpjs/vinyl-fs/commit/52ce21ba241f73f0348d7683306c1175ce6c88b3) 0.3.3 (@contra)
293
+ - [#29](https://github.com/gulpjs/vinyl-fs/pull/29) Quick fix for using through2 to create dest stream (@tomchentw)
294
+ - [c678bd4](https://github.com/gulpjs/vinyl-fs/commit/c678bd469e11e768713219b774fa82aa781e4fef) test(dest): also added finish event check for #26 (@tomchentw)
295
+ - [595e96e](https://github.com/gulpjs/vinyl-fs/commit/595e96e45f12fc868f9ce256d0421da7f4932843) test(dest): added test case for #26 (@tomchentw)
296
+ - [8bf8612](https://github.com/gulpjs/vinyl-fs/commit/8bf8612702e228fcc0c678acafe7634f2c6b269b) fix(vfs.dest): attatched an noop data listener (@tomchentw)
297
+
298
+ ### v0.3.2 (2014/06/25 18:34 +00:00)
299
+ - [8fef1ed](https://github.com/gulpjs/vinyl-fs/commit/8fef1ed6d65a2532271983360d8700ec8dd03023) 0.3.2 (@contra)
300
+ - [#27](https://github.com/gulpjs/vinyl-fs/pull/27) Removed through2-map dependency (@tomchentw)
301
+ - [ede010b](https://github.com/gulpjs/vinyl-fs/commit/ede010be5aa110f55f2fc9daa34c1643e377e11c) feat(index.js): removed through2-map dependency (@tomchentw)
302
+ - [d1433cb](https://github.com/gulpjs/vinyl-fs/commit/d1433cb41ed3e0bf78bc2ea3a52e0599cccc45c2) .npmignore (@contra)
303
+ - [74347cc](https://github.com/gulpjs/vinyl-fs/commit/74347ccc71e5189e5d8809919fb145cfa9657481) .npmignore (@contra)
304
+ - [7c66ea2](https://github.com/gulpjs/vinyl-fs/commit/7c66ea2f09acb2dba51b192ccc8a8f09ef01489f) .npmignore (@contra)
305
+ - [cece0dc](https://github.com/gulpjs/vinyl-fs/commit/cece0dc68dfc1ebd3b344e367a4a269c43f15a0e) .npmignore (@contra)
306
+ - [33ac098](https://github.com/gulpjs/vinyl-fs/commit/33ac098ca8ff2e3216399784cd58b775d764ccab) .npmignore (@contra)
307
+ - [831044b](https://github.com/gulpjs/vinyl-fs/commit/831044b683c65eb9858323dc2744fd3ec33d82e1) .npmignore (@contra)
308
+ - [ff582cc](https://github.com/gulpjs/vinyl-fs/commit/ff582ccd55e6481134f6c44d1d2cb1dfc338818c) .npmignore (@contra)
309
+ - [fe75d6a](https://github.com/gulpjs/vinyl-fs/commit/fe75d6af6703bf2b6711ca1abfe9832d1d836375) .npmignore (@contra)
310
+ - [0c1da37](https://github.com/gulpjs/vinyl-fs/commit/0c1da37d252d16a171f30dfea42714bb208d1b3d) .npmignore (@contra)
311
+ - [10e6b53](https://github.com/gulpjs/vinyl-fs/commit/10e6b53bd9f8683408f6394c04142ac55ab9f493) .gitignore (@contra)
312
+ - [97296ef](https://github.com/gulpjs/vinyl-fs/commit/97296ef8e724953570ab989b043692cea5ba9062) .npmignore (@contra)
313
+ - [a12356c](https://github.com/gulpjs/vinyl-fs/commit/a12356c36cfd24e19d0c88225d364368ae7dac36) .gitignore (@contra)
314
+ - [7a7f2e5](https://github.com/gulpjs/vinyl-fs/commit/7a7f2e544b5eacf595bcc1fd9cac34de880ec071) .jshintrc (@contra)
315
+
316
+ ### v0.3.1 (2014/06/25 14:28 +00:00)
317
+ - [6004e32](https://github.com/gulpjs/vinyl-fs/commit/6004e32a6c5dca3f9361695d1b9797bbc4529337) 0.3.1 (@contra)
318
+ - [#26](https://github.com/gulpjs/vinyl-fs/pull/26) feat(lib/*.js): change map-stream to through2 (@tomchentw)
319
+ - [b181693](https://github.com/gulpjs/vinyl-fs/commit/b181693e7c2dd1b3992be02af899b8024669771c) styles(lib): changed done back to cb (@tomchentw)
320
+ - [c5d76e5](https://github.com/gulpjs/vinyl-fs/commit/c5d76e51157a7ae7788d7dd762145ca48a701dfb) feat(lib/*.js): change map-stream to through2@0.5.1 (@tomchentw)
321
+ - [583d30e](https://github.com/gulpjs/vinyl-fs/commit/583d30efd72267b59752f98a920541b1cfadb31c) function for dest, closes #15 (@contra)
322
+ - [d0ba8bb](https://github.com/gulpjs/vinyl-fs/commit/d0ba8bba4519df2b6bb41f0f07cfaf1d7a5fbf7d) make src a passthrough, clean up mode logic in dest, jshint, stylize (@contra)
323
+ - [c9b2c07](https://github.com/gulpjs/vinyl-fs/commit/c9b2c075dbb55ee97cd6ab9909bd1e1f87bf77e0) update graceful-fs dep (@contra)
324
+ - [7af93d0](https://github.com/gulpjs/vinyl-fs/commit/7af93d0c63822f17183b89ec591622d14f9f17ca) update travis yml (@contra)
325
+ - [49fb44d](https://github.com/gulpjs/vinyl-fs/commit/49fb44d44d6891f450c4c7cef9bda3caa4035107) 0.2.0 - BOM stripping and dep updates (@contra)
326
+ - [#21](https://github.com/gulpjs/vinyl-fs/pull/21) Strip BOM when reading UTF-8 files (@mathiasbynens)
327
+ - [4c1fc02](https://github.com/gulpjs/vinyl-fs/commit/4c1fc02bab8c2ca8fcefe0bff80347cc0b17712b) Strip BOM when reading UTF-8-encoded files (@mathiasbynens)
328
+ - [abd2fe4](https://github.com/gulpjs/vinyl-fs/commit/abd2fe4e1e32ef46d7544ce90fe941ece3a49a55) rollback gaze update (@contra)
329
+ - [103bb8c](https://github.com/gulpjs/vinyl-fs/commit/103bb8ca0b16e888ee44146603d5591220e228f4) update glob-watcher (@contra)
330
+ - [a319889](https://github.com/gulpjs/vinyl-fs/commit/a319889b9cbad1db0097d041ad02e0e2f76640bf) check src and dest args, closes #8 (@contra)
331
+ - [671197a](https://github.com/gulpjs/vinyl-fs/commit/671197a54ddda0277abdc0c1c9fce27cc8ab9b86) drop support for 0.9 (@contra)
332
+ - [f89e03e](https://github.com/gulpjs/vinyl-fs/commit/f89e03e62cb62dc6c28d0ebe6f146123be2232a7) 0.1.0 (@contra)
333
+ - [bb34369](https://github.com/gulpjs/vinyl-fs/commit/bb343692f3bbeab08b40b4bb1ee20af7205f2837) comment (@contra)
334
+ - [c1c866a](https://github.com/gulpjs/vinyl-fs/commit/c1c866a5277038056d52fb106b2bca8cea430e59) mergit (@contra)
335
+ - [cc81580](https://github.com/gulpjs/vinyl-fs/commit/cc81580a4818e2260a367c54bdcc42b0b4d0a5cc) respect file modes in dest, add mode option to dest (@contra)
336
+ - [#10](https://github.com/gulpjs/vinyl-fs/pull/10) Allow piping streaming vinyls through multiple .dest()'s (@hughsk)
337
+ - [d5566b2](https://github.com/gulpjs/vinyl-fs/commit/d5566b213b7e90a94b20aad35d4c08b2861c8247) Use ./src/streamFile for re-streaming .dest() streams (@hughsk)
338
+ - [868a3ec](https://github.com/gulpjs/vinyl-fs/commit/868a3ecc7945e798ee702cc30c5bcfff2af3ecd5) Allow piping streaming vinyls through multiple .dest()'s (@hughsk)
339
+ - [191d4ae](https://github.com/gulpjs/vinyl-fs/commit/191d4ae3672c76eb0cf0d46a2404c8e60e587d85) update file paths as they cruise through .dest (@contra)
340
+ - [cb69aa6](https://github.com/gulpjs/vinyl-fs/commit/cb69aa6c7ead7a435067fdfc89f89cd8af1215d4) cleanup (@contra)
341
+ - [f50d669](https://github.com/gulpjs/vinyl-fs/commit/f50d669a968f6f69ef07a0cc34b11704829c9c9f) add tests for relative cwd (@contra)
342
+ - [39dfc18](https://github.com/gulpjs/vinyl-fs/commit/39dfc189367154136718fa0958712b1b14ea5e5a) fix tests (@contra)
343
+ - [60dac5f](https://github.com/gulpjs/vinyl-fs/commit/60dac5fa38c3470556d987b01405d3ccca6af9ec) remove async dep (@contra)
344
+ - [1178422](https://github.com/gulpjs/vinyl-fs/commit/11784223e5a38795715c759333b352d40e83c76a) more tests (@contra)
345
+ - [ed50c02](https://github.com/gulpjs/vinyl-fs/commit/ed50c02ba3487e8f4212792a0db2aa39dbc060a6) directory test (@contra)
346
+ - [ee32c0a](https://github.com/gulpjs/vinyl-fs/commit/ee32c0a3a5f7aa30fc62a8481dd2f38aa410fa1a) more simplifying (@contra)
347
+ - [fb481f0](https://github.com/gulpjs/vinyl-fs/commit/fb481f0c6baedf89635faa1eb278cafb4b72c5bb) more simplifying (@contra)
348
+ - [a415173](https://github.com/gulpjs/vinyl-fs/commit/a4151738c740a760fa8b577a4f633ea6aad4055c) yep (@contra)
349
+ - [753add9](https://github.com/gulpjs/vinyl-fs/commit/753add9acc8cc0b3ff883f5228c972731a5fde74) simplify dest (@contra)
350
+ - [5325dcf](https://github.com/gulpjs/vinyl-fs/commit/5325dcf796e1e6db86a3c9abd58484f552c299f8) cwd in dest (@contra)
351
+ - [1b975fd](https://github.com/gulpjs/vinyl-fs/commit/1b975fdbf6c005674e86454b1a780b1fbf72f605) test cleaning (@contra)
352
+ - [abdcbb7](https://github.com/gulpjs/vinyl-fs/commit/abdcbb7fcd8b78469eaf784675df2d7c7a15c766) coveralls (@contra)
353
+ - [b7a8ebc](https://github.com/gulpjs/vinyl-fs/commit/b7a8ebcfa07865a283b5efe69303b795a2dcdd83) license update (@contra)
354
+ - [bac7381](https://github.com/gulpjs/vinyl-fs/commit/bac7381e31b7c30aed8ae925d12821cf65f9337e) more dep updates (@contra)
355
+ - [14f0a1e](https://github.com/gulpjs/vinyl-fs/commit/14f0a1eeaab5ca6a52042aae489a2da5ef78c318) badges and refactor (@contra)
356
+ - [8ac77fc](https://github.com/gulpjs/vinyl-fs/commit/8ac77fc245b8b3938c74748900358e9ad540e4bd) wait for file close in writeStream (@contra)
357
+ - [002273c](https://github.com/gulpjs/vinyl-fs/commit/002273cfae226d562a8b22173c3a718614444c7a) writeStream fix (@contra)
358
+ - [af64059](https://github.com/gulpjs/vinyl-fs/commit/af640595b1325385ce650b410f9091531447b35a) Merge branch 'master' of https://github.com/wearefractal/vinyl-fs (@contra)
359
+ - [5c36fbc](https://github.com/gulpjs/vinyl-fs/commit/5c36fbcaa7d7eca58fb5f035bf15492f4a3b737a) trim fat - graceful-fs, map-stream, etc. (@contra)
360
+ - [#3](https://github.com/gulpjs/vinyl-fs/pull/3) Fix broken refactor changes (@yyx990803)
361
+ - [c610342](https://github.com/gulpjs/vinyl-fs/commit/c610342755156dc9c059f21ac31a679623cef227) fix writePath
362
+ - [b09678b](https://github.com/gulpjs/vinyl-fs/commit/b09678b05069852d713a263e8526f30f83ecae23) require deps in writecontent.js
363
+ - [a30a0ea](https://github.com/gulpjs/vinyl-fs/commit/a30a0ea5ba65aa32b8a3a7a72fe6ddcbb20fe3fa) watch added (@contra)
364
+ - [209d4f2](https://github.com/gulpjs/vinyl-fs/commit/209d4f235fcd4419318527a96f6bc8757a4b87a7) flesh out more (@contra)
365
+ - [5958e7e](https://github.com/gulpjs/vinyl-fs/commit/5958e7e7b55bed41ae0972d721eae91ea9d21cbf) new vinyl file isDirectory changes (@contra)
366
+ - [7f8684b](https://github.com/gulpjs/vinyl-fs/commit/7f8684b87d93ee66fdbefe5397c8b7e365727d3d) more tests (@contra)
367
+ - [bf1f18c](https://github.com/gulpjs/vinyl-fs/commit/bf1f18cef59dff9ad01658b5e11968f2a3b11ff5) start tests (@contra)
368
+ - [23a1cff](https://github.com/gulpjs/vinyl-fs/commit/23a1cff61b8fcc07d543c1757a415591277a5425) fix deps (@contra)
369
+ - [35f230b](https://github.com/gulpjs/vinyl-fs/commit/35f230b2abe22e5fa0cc710a9bbbfb8dd3cfe3fa) start impl (@contra)
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013-2016 Fractal <contact@wearefractal.com>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.