@10yun/cv-mobile-ui 0.5.29 → 0.5.30

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 (260) hide show
  1. package/package.json +1 -1
  2. package/plugins/luch-request/adapters/index.js +131 -0
  3. package/plugins/luch-request/core/InterceptorManager.js +50 -0
  4. package/plugins/luch-request/core/Request.js +199 -0
  5. package/plugins/luch-request/core/buildFullPath.js +20 -0
  6. package/plugins/luch-request/core/defaults.js +32 -0
  7. package/plugins/luch-request/core/dispatchRequest.js +5 -0
  8. package/plugins/luch-request/core/mergeConfig.js +125 -0
  9. package/plugins/luch-request/core/settle.js +16 -0
  10. package/plugins/luch-request/helpers/buildURL.js +71 -0
  11. package/plugins/luch-request/helpers/combineURLs.js +12 -0
  12. package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
  13. package/plugins/luch-request/index.d.ts +197 -0
  14. package/plugins/luch-request/index.js +2 -0
  15. package/plugins/luch-request/readme.md +3 -0
  16. package/plugins/luch-request/utils/clone.js +264 -0
  17. package/plugins/luch-request/utils.js +131 -0
  18. package/plugins/request.js +2 -2
  19. package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
  20. package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
  21. package/ui-fireui/fui-alert/fui-alert.vue +141 -0
  22. package/ui-fireui/fui-badge/fui-badge.vue +158 -0
  23. package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
  24. package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
  25. package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
  26. package/ui-fireui/fui-button/fui-button.vue +424 -0
  27. package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
  28. package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
  29. package/ui-fireui/fui-card/fui-card.vue +231 -0
  30. package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
  31. package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
  32. package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
  33. package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
  34. package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
  35. package/ui-fireui/fui-divider/fui-divider.vue +118 -0
  36. package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
  37. package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
  38. package/ui-fireui/fui-fab/fui-fab.vue +284 -0
  39. package/ui-fireui/fui-footer/fui-footer.vue +131 -0
  40. package/ui-fireui/fui-grid/fui-grid.vue +42 -0
  41. package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
  42. package/ui-fireui/fui-icon/fui-icon.vue +820 -0
  43. package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
  44. package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
  45. package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
  46. package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
  47. package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
  48. package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
  49. package/ui-fireui/fui-loading/fui-loading.vue +78 -0
  50. package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
  51. package/ui-fireui/fui-modal/fui-modal.vue +392 -0
  52. package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
  53. package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
  54. package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
  55. package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
  56. package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
  57. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
  58. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
  59. package/ui-fireui/fui-rate/fui-rate.vue +167 -0
  60. package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
  61. package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
  62. package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
  63. package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
  64. package/ui-fireui/fui-steps/fui-steps.vue +214 -0
  65. package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
  66. package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
  67. package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
  68. package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
  69. package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
  70. package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
  71. package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
  72. package/ui-fireui/fui-tag/fui-tag.vue +374 -0
  73. package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
  74. package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
  75. package/ui-fireui/fui-tips/fui-tips.vue +161 -0
  76. package/ui-fireui/fui-toast/fui-toast.vue +117 -0
  77. package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
  78. package/ui-fireui/fui-upload/fui-upload.vue +446 -0
  79. package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
  80. package/uview-plus/README.md +1 -1
  81. package/uview-plus/changelog-wu-tool.md +21 -0
  82. package/uview-plus/changelog-wu.md +91 -0
  83. package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
  84. package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
  85. package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
  86. package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
  87. package/uview-plus/components/u-app-update/_doc/package.json +89 -0
  88. package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
  89. package/uview-plus/components/u-app-update/config.js +120 -0
  90. package/uview-plus/components/u-app-update/img/act.png +0 -0
  91. package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
  92. package/uview-plus/components/u-app-update/img/close.png +0 -0
  93. package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
  94. package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
  95. package/uview-plus/components/u-app-update/pages/index.vue +8 -0
  96. package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
  97. package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
  98. package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
  99. package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
  100. package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
  101. package/uview-plus/components/u-button-wu/vue.scss +81 -0
  102. package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
  103. package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
  104. package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
  105. package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
  106. package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
  107. package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
  108. package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
  109. package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
  110. package/uview-plus/components/u-calendar-wu/props.js +166 -0
  111. package/uview-plus/components/u-calendar-wu/style.css +196 -0
  112. package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
  113. package/uview-plus/components/u-calendar-wu/util.js +552 -0
  114. package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
  115. package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
  116. package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
  117. package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
  118. package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
  119. package/uview-plus/components/u-cell/_doc/package.json +89 -0
  120. package/uview-plus/components/u-cell/_doc/readme.md +25 -0
  121. package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
  122. package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
  123. package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
  124. package/uview-plus/components/u-code/_doc/changelog.md +6 -0
  125. package/uview-plus/components/u-code/_doc/package.json +86 -0
  126. package/uview-plus/components/u-code/_doc/readme.md +16 -0
  127. package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
  128. package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
  129. package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
  130. package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
  131. package/uview-plus/components/u-empty/u-empty.vue +27 -1
  132. package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
  133. package/uview-plus/components/u-gap/_doc/package.json +86 -0
  134. package/uview-plus/components/u-gap/_doc/readme.md +22 -0
  135. package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
  136. package/uview-plus/components/u-icon/_doc/package.json +85 -0
  137. package/uview-plus/components/u-icon/_doc/readme.md +10 -0
  138. package/uview-plus/components/u-icon/icon.js +23 -25
  139. package/uview-plus/components/u-icon/icons.js +213 -213
  140. package/uview-plus/components/u-icon/style.css +3 -3
  141. package/uview-plus/components/u-icon/u-icon2.vue +149 -0
  142. package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
  143. package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
  144. package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
  145. package/uview-plus/components/u-image-wu/props.js +94 -0
  146. package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
  147. package/uview-plus/components/u-input/_doc/changelog.md +6 -0
  148. package/uview-plus/components/u-input/_doc/package.json +88 -0
  149. package/uview-plus/components/u-input/_doc/readme.md +16 -0
  150. package/uview-plus/components/u-line/_doc/changelog.md +8 -0
  151. package/uview-plus/components/u-line/_doc/package.json +86 -0
  152. package/uview-plus/components/u-line/_doc/readme.md +16 -0
  153. package/uview-plus/components/u-link/_doc/changelog.md +8 -0
  154. package/uview-plus/components/u-link/_doc/package.json +86 -0
  155. package/uview-plus/components/u-link/_doc/readme.md +20 -0
  156. package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
  157. package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
  158. package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
  159. package/uview-plus/components/u-loading-icon/props.js +1 -1
  160. package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
  161. package/uview-plus/components/u-navbar/_doc/package.json +89 -0
  162. package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
  163. package/uview-plus/components/u-navbar-wu/props.js +102 -0
  164. package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
  165. package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
  166. package/uview-plus/components/u-number-box/_doc/package.json +88 -0
  167. package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
  168. package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
  169. package/uview-plus/components/u-overlay/_doc/package.json +88 -0
  170. package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
  171. package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
  172. package/uview-plus/components/u-popup/_doc/package.json +92 -0
  173. package/uview-plus/components/u-popup/_doc/readme.md +16 -0
  174. package/uview-plus/components/u-popup-wu/keypress.js +45 -0
  175. package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
  176. package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
  177. package/uview-plus/components/u-radio/_doc/package.json +88 -0
  178. package/uview-plus/components/u-radio/_doc/readme.md +25 -0
  179. package/uview-plus/components/u-row/_doc/changelog.md +8 -0
  180. package/uview-plus/components/u-row/_doc/package.json +86 -0
  181. package/uview-plus/components/u-row/_doc/readme.md +16 -0
  182. package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
  183. package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
  184. package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
  185. package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
  186. package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
  187. package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
  188. package/uview-plus/components/u-sku-wu/props.js +86 -0
  189. package/uview-plus/components/u-sku-wu/style.css +271 -0
  190. package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
  191. package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
  192. package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
  193. package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
  194. package/uview-plus/components/u-text/_doc/changelog.md +10 -0
  195. package/uview-plus/components/u-text/_doc/package.json +89 -0
  196. package/uview-plus/components/u-text/_doc/readme.md +20 -0
  197. package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
  198. package/uview-plus/components/u-textarea/_doc/package.json +86 -0
  199. package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
  200. package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
  201. package/uview-plus/components/u-transition/_doc/package.json +86 -0
  202. package/uview-plus/components/u-transition/_doc/readme.md +16 -0
  203. package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
  204. package/uview-plus/components/u-transition-wu/props.js +32 -0
  205. package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
  206. package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
  207. package/uview-plus/index.js +107 -94
  208. package/uview-plus/libs/config/config.js +46 -48
  209. package/uview-plus/libs/css/color.scss +32 -311
  210. package/uview-plus/libs/css/components-wu.scss +30 -0
  211. package/uview-plus/libs/css/vue.scss +10 -10
  212. package/uview-plus/libs/function/calc.js +61 -55
  213. package/uview-plus/libs/function/cc.js +66 -0
  214. package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
  215. package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
  216. package/uview-plus/libs/function/color/color-convert/README.md +68 -0
  217. package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
  218. package/uview-plus/libs/function/color/color-convert/index.js +81 -0
  219. package/uview-plus/libs/function/color/color-convert/package.json +48 -0
  220. package/uview-plus/libs/function/color/color-convert/route.js +97 -0
  221. package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
  222. package/uview-plus/libs/function/color/color-name/README.md +11 -0
  223. package/uview-plus/libs/function/color/color-name/index.js +152 -0
  224. package/uview-plus/libs/function/color/color-name/package.json +28 -0
  225. package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
  226. package/uview-plus/libs/function/color/color-string/README.md +62 -0
  227. package/uview-plus/libs/function/color/color-string/index.js +244 -0
  228. package/uview-plus/libs/function/color/color-string/package.json +39 -0
  229. package/uview-plus/libs/function/color/color.js +496 -0
  230. package/uview-plus/libs/function/color/index.js +158 -0
  231. package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
  232. package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
  233. package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
  234. package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
  235. package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
  236. package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
  237. package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
  238. package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
  239. package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
  240. package/uview-plus/libs/function/colorGradient.js +108 -106
  241. package/uview-plus/libs/function/debounce.js +17 -17
  242. package/uview-plus/libs/function/digit.js +1 -3
  243. package/uview-plus/libs/function/http.js +3 -3
  244. package/uview-plus/libs/function/index-wu.js +231 -0
  245. package/uview-plus/libs/function/index.js +579 -566
  246. package/uview-plus/libs/function/platform.js +18 -18
  247. package/uview-plus/libs/function/test.js +135 -137
  248. package/uview-plus/libs/function/throttle.js +17 -17
  249. package/uview-plus/libs/luch-request/core/Request.js +199 -199
  250. package/uview-plus/libs/mixin/mpMixin.js +1 -0
  251. package/uview-plus/libs/mixin/openType.js +33 -0
  252. package/uview-plus/libs/util/async-validator.js +1343 -1343
  253. package/uview-plus/libs/util/dayjs.js +404 -0
  254. package/uview-plus/libs/util/route.js +101 -105
  255. package/uview-plus/package-wu-tool.json +84 -0
  256. package/uview-plus/package-wu.json +112 -0
  257. package/uview-plus/package.json +106 -95
  258. package/uview-plus/readme-wu.md +148 -0
  259. package/uview-ui/index.js +51 -52
  260. package/plugins/uni-upgrade.js +0 -294
@@ -0,0 +1,1443 @@
1
+ Arguments:
2
+ /Users/junon/n/bin/node /Users/junon/.yarn/bin/yarn.js test
3
+
4
+ PATH:
5
+ /Users/junon/.yarn/bin:/Users/junon/.config/yarn/global/node_modules/.bin:/Users/junon/perl5/bin:/Users/junon/google-cloud-sdk/bin:/usr/local/sbin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/junon/bin:/Users/junon/.local/bin:/src/.go/bin:/src/llvm/llvm/build/bin:/Users/junon/Library/Android/sdk/platform-tools:/Users/junon/n/bin:/usr/local/texlive/2017/bin/x86_64-darwin/
6
+
7
+ Yarn version:
8
+ 1.5.1
9
+
10
+ Node version:
11
+ 9.6.1
12
+
13
+ Platform:
14
+ darwin x64
15
+
16
+ npm manifest:
17
+ {
18
+ "name": "is-arrayish",
19
+ "description": "Determines if an object can be used as an array",
20
+ "version": "0.3.1",
21
+ "author": "Qix (http://github.com/qix-)",
22
+ "keywords": [
23
+ "is",
24
+ "array",
25
+ "duck",
26
+ "type",
27
+ "arrayish",
28
+ "similar",
29
+ "proto",
30
+ "prototype",
31
+ "type"
32
+ ],
33
+ "license": "MIT",
34
+ "scripts": {
35
+ "test": "mocha --require coffeescript/register",
36
+ "lint": "zeit-eslint --ext .jsx,.js .",
37
+ "lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/qix-/node-is-arrayish.git"
42
+ },
43
+ "devDependencies": {
44
+ "@zeit/eslint-config-node": "^0.3.0",
45
+ "@zeit/git-hooks": "^0.1.4",
46
+ "coffeescript": "^2.3.1",
47
+ "coveralls": "^3.0.1",
48
+ "eslint": "^4.19.1",
49
+ "istanbul": "^0.4.5",
50
+ "mocha": "^5.2.0",
51
+ "should": "^13.2.1"
52
+ },
53
+ "eslintConfig": {
54
+ "extends": [
55
+ "@zeit/eslint-config-node"
56
+ ]
57
+ },
58
+ "git": {
59
+ "pre-commit": "lint-staged"
60
+ }
61
+ }
62
+
63
+ yarn manifest:
64
+ No manifest
65
+
66
+ Lockfile:
67
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
68
+ # yarn lockfile v1
69
+
70
+
71
+ "@zeit/eslint-config-base@0.3.0":
72
+ version "0.3.0"
73
+ resolved "https://registry.yarnpkg.com/@zeit/eslint-config-base/-/eslint-config-base-0.3.0.tgz#32a58c3e52eca4025604758cb4591f3d28e22fb4"
74
+ dependencies:
75
+ arg "^1.0.0"
76
+ chalk "^2.3.0"
77
+
78
+ "@zeit/eslint-config-node@^0.3.0":
79
+ version "0.3.0"
80
+ resolved "https://registry.yarnpkg.com/@zeit/eslint-config-node/-/eslint-config-node-0.3.0.tgz#6e328328f366f66c2a0549a69131bbcd9735f098"
81
+ dependencies:
82
+ "@zeit/eslint-config-base" "0.3.0"
83
+
84
+ "@zeit/git-hooks@^0.1.4":
85
+ version "0.1.4"
86
+ resolved "https://registry.yarnpkg.com/@zeit/git-hooks/-/git-hooks-0.1.4.tgz#70583db5dd69726a62c7963520e67f2c3a33cc5f"
87
+
88
+ abbrev@1:
89
+ version "1.1.1"
90
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
91
+
92
+ abbrev@1.0.x:
93
+ version "1.0.9"
94
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
95
+
96
+ acorn-jsx@^3.0.0:
97
+ version "3.0.1"
98
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
99
+ dependencies:
100
+ acorn "^3.0.4"
101
+
102
+ acorn@^3.0.4:
103
+ version "3.3.0"
104
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
105
+
106
+ acorn@^5.5.0:
107
+ version "5.7.1"
108
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
109
+
110
+ ajv-keywords@^2.1.0:
111
+ version "2.1.1"
112
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
113
+
114
+ ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0:
115
+ version "5.5.2"
116
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
117
+ dependencies:
118
+ co "^4.6.0"
119
+ fast-deep-equal "^1.0.0"
120
+ fast-json-stable-stringify "^2.0.0"
121
+ json-schema-traverse "^0.3.0"
122
+
123
+ align-text@^0.1.1, align-text@^0.1.3:
124
+ version "0.1.4"
125
+ resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
126
+ dependencies:
127
+ kind-of "^3.0.2"
128
+ longest "^1.0.1"
129
+ repeat-string "^1.5.2"
130
+
131
+ amdefine@>=0.0.4:
132
+ version "1.0.1"
133
+ resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
134
+
135
+ ansi-escapes@^3.0.0:
136
+ version "3.1.0"
137
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
138
+
139
+ ansi-regex@^2.0.0:
140
+ version "2.1.1"
141
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
142
+
143
+ ansi-regex@^3.0.0:
144
+ version "3.0.0"
145
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
146
+
147
+ ansi-styles@^2.2.1:
148
+ version "2.2.1"
149
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
150
+
151
+ ansi-styles@^3.2.1:
152
+ version "3.2.1"
153
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
154
+ dependencies:
155
+ color-convert "^1.9.0"
156
+
157
+ arg@^1.0.0:
158
+ version "1.0.1"
159
+ resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.1.tgz#892a26d841bd5a64880bbc8f73dd64a705910ca3"
160
+
161
+ argparse@^1.0.7:
162
+ version "1.0.10"
163
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
164
+ dependencies:
165
+ sprintf-js "~1.0.2"
166
+
167
+ array-union@^1.0.1:
168
+ version "1.0.2"
169
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
170
+ dependencies:
171
+ array-uniq "^1.0.1"
172
+
173
+ array-uniq@^1.0.1:
174
+ version "1.0.3"
175
+ resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
176
+
177
+ arrify@^1.0.0:
178
+ version "1.0.1"
179
+ resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
180
+
181
+ asn1@~0.2.3:
182
+ version "0.2.3"
183
+ resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
184
+
185
+ assert-plus@1.0.0, assert-plus@^1.0.0:
186
+ version "1.0.0"
187
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
188
+
189
+ async@1.x, async@^1.4.0:
190
+ version "1.5.2"
191
+ resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
192
+
193
+ asynckit@^0.4.0:
194
+ version "0.4.0"
195
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
196
+
197
+ aws-sign2@~0.7.0:
198
+ version "0.7.0"
199
+ resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
200
+
201
+ aws4@^1.6.0:
202
+ version "1.7.0"
203
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289"
204
+
205
+ babel-code-frame@^6.22.0:
206
+ version "6.26.0"
207
+ resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
208
+ dependencies:
209
+ chalk "^1.1.3"
210
+ esutils "^2.0.2"
211
+ js-tokens "^3.0.2"
212
+
213
+ balanced-match@^1.0.0:
214
+ version "1.0.0"
215
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
216
+
217
+ bcrypt-pbkdf@^1.0.0:
218
+ version "1.0.1"
219
+ resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
220
+ dependencies:
221
+ tweetnacl "^0.14.3"
222
+
223
+ brace-expansion@^1.1.7:
224
+ version "1.1.11"
225
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
226
+ dependencies:
227
+ balanced-match "^1.0.0"
228
+ concat-map "0.0.1"
229
+
230
+ browser-stdout@1.3.1:
231
+ version "1.3.1"
232
+ resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
233
+
234
+ buffer-from@^1.0.0:
235
+ version "1.1.0"
236
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04"
237
+
238
+ caller-path@^0.1.0:
239
+ version "0.1.0"
240
+ resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
241
+ dependencies:
242
+ callsites "^0.2.0"
243
+
244
+ callsites@^0.2.0:
245
+ version "0.2.0"
246
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
247
+
248
+ camelcase@^1.0.2:
249
+ version "1.2.1"
250
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
251
+
252
+ caseless@~0.12.0:
253
+ version "0.12.0"
254
+ resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
255
+
256
+ center-align@^0.1.1:
257
+ version "0.1.3"
258
+ resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
259
+ dependencies:
260
+ align-text "^0.1.3"
261
+ lazy-cache "^1.0.3"
262
+
263
+ chalk@^1.1.3:
264
+ version "1.1.3"
265
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
266
+ dependencies:
267
+ ansi-styles "^2.2.1"
268
+ escape-string-regexp "^1.0.2"
269
+ has-ansi "^2.0.0"
270
+ strip-ansi "^3.0.0"
271
+ supports-color "^2.0.0"
272
+
273
+ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0:
274
+ version "2.4.1"
275
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
276
+ dependencies:
277
+ ansi-styles "^3.2.1"
278
+ escape-string-regexp "^1.0.5"
279
+ supports-color "^5.3.0"
280
+
281
+ chardet@^0.4.0:
282
+ version "0.4.2"
283
+ resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
284
+
285
+ circular-json@^0.3.1:
286
+ version "0.3.3"
287
+ resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
288
+
289
+ cli-cursor@^2.1.0:
290
+ version "2.1.0"
291
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
292
+ dependencies:
293
+ restore-cursor "^2.0.0"
294
+
295
+ cli-width@^2.0.0:
296
+ version "2.2.0"
297
+ resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
298
+
299
+ cliui@^2.1.0:
300
+ version "2.1.0"
301
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
302
+ dependencies:
303
+ center-align "^0.1.1"
304
+ right-align "^0.1.1"
305
+ wordwrap "0.0.2"
306
+
307
+ co@^4.6.0:
308
+ version "4.6.0"
309
+ resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
310
+
311
+ coffeescript@^2.3.1:
312
+ version "2.3.1"
313
+ resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-2.3.1.tgz#a25f69c251d25805c9842e57fc94bfc453ef6aed"
314
+
315
+ color-convert@^1.9.0:
316
+ version "1.9.2"
317
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147"
318
+ dependencies:
319
+ color-name "1.1.1"
320
+
321
+ color-name@1.1.1:
322
+ version "1.1.1"
323
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
324
+
325
+ combined-stream@1.0.6, combined-stream@~1.0.5:
326
+ version "1.0.6"
327
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
328
+ dependencies:
329
+ delayed-stream "~1.0.0"
330
+
331
+ commander@2.15.1:
332
+ version "2.15.1"
333
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
334
+
335
+ concat-map@0.0.1:
336
+ version "0.0.1"
337
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
338
+
339
+ concat-stream@^1.6.0:
340
+ version "1.6.2"
341
+ resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
342
+ dependencies:
343
+ buffer-from "^1.0.0"
344
+ inherits "^2.0.3"
345
+ readable-stream "^2.2.2"
346
+ typedarray "^0.0.6"
347
+
348
+ core-util-is@1.0.2, core-util-is@~1.0.0:
349
+ version "1.0.2"
350
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
351
+
352
+ coveralls@^3.0.1:
353
+ version "3.0.1"
354
+ resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.1.tgz#12e15914eaa29204e56869a5ece7b9e1492d2ae2"
355
+ dependencies:
356
+ js-yaml "^3.6.1"
357
+ lcov-parse "^0.0.10"
358
+ log-driver "^1.2.5"
359
+ minimist "^1.2.0"
360
+ request "^2.79.0"
361
+
362
+ cross-spawn@^5.1.0:
363
+ version "5.1.0"
364
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
365
+ dependencies:
366
+ lru-cache "^4.0.1"
367
+ shebang-command "^1.2.0"
368
+ which "^1.2.9"
369
+
370
+ dashdash@^1.12.0:
371
+ version "1.14.1"
372
+ resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
373
+ dependencies:
374
+ assert-plus "^1.0.0"
375
+
376
+ debug@3.1.0, debug@^3.1.0:
377
+ version "3.1.0"
378
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
379
+ dependencies:
380
+ ms "2.0.0"
381
+
382
+ decamelize@^1.0.0:
383
+ version "1.2.0"
384
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
385
+
386
+ deep-is@~0.1.3:
387
+ version "0.1.3"
388
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
389
+
390
+ del@^2.0.2:
391
+ version "2.2.2"
392
+ resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
393
+ dependencies:
394
+ globby "^5.0.0"
395
+ is-path-cwd "^1.0.0"
396
+ is-path-in-cwd "^1.0.0"
397
+ object-assign "^4.0.1"
398
+ pify "^2.0.0"
399
+ pinkie-promise "^2.0.0"
400
+ rimraf "^2.2.8"
401
+
402
+ delayed-stream@~1.0.0:
403
+ version "1.0.0"
404
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
405
+
406
+ diff@3.5.0:
407
+ version "3.5.0"
408
+ resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
409
+
410
+ doctrine@^2.1.0:
411
+ version "2.1.0"
412
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
413
+ dependencies:
414
+ esutils "^2.0.2"
415
+
416
+ ecc-jsbn@~0.1.1:
417
+ version "0.1.1"
418
+ resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
419
+ dependencies:
420
+ jsbn "~0.1.0"
421
+
422
+ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
423
+ version "1.0.5"
424
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
425
+
426
+ escodegen@1.8.x:
427
+ version "1.8.1"
428
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018"
429
+ dependencies:
430
+ esprima "^2.7.1"
431
+ estraverse "^1.9.1"
432
+ esutils "^2.0.2"
433
+ optionator "^0.8.1"
434
+ optionalDependencies:
435
+ source-map "~0.2.0"
436
+
437
+ eslint-scope@^3.7.1:
438
+ version "3.7.1"
439
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
440
+ dependencies:
441
+ esrecurse "^4.1.0"
442
+ estraverse "^4.1.1"
443
+
444
+ eslint-visitor-keys@^1.0.0:
445
+ version "1.0.0"
446
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
447
+
448
+ eslint@^4.19.1:
449
+ version "4.19.1"
450
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
451
+ dependencies:
452
+ ajv "^5.3.0"
453
+ babel-code-frame "^6.22.0"
454
+ chalk "^2.1.0"
455
+ concat-stream "^1.6.0"
456
+ cross-spawn "^5.1.0"
457
+ debug "^3.1.0"
458
+ doctrine "^2.1.0"
459
+ eslint-scope "^3.7.1"
460
+ eslint-visitor-keys "^1.0.0"
461
+ espree "^3.5.4"
462
+ esquery "^1.0.0"
463
+ esutils "^2.0.2"
464
+ file-entry-cache "^2.0.0"
465
+ functional-red-black-tree "^1.0.1"
466
+ glob "^7.1.2"
467
+ globals "^11.0.1"
468
+ ignore "^3.3.3"
469
+ imurmurhash "^0.1.4"
470
+ inquirer "^3.0.6"
471
+ is-resolvable "^1.0.0"
472
+ js-yaml "^3.9.1"
473
+ json-stable-stringify-without-jsonify "^1.0.1"
474
+ levn "^0.3.0"
475
+ lodash "^4.17.4"
476
+ minimatch "^3.0.2"
477
+ mkdirp "^0.5.1"
478
+ natural-compare "^1.4.0"
479
+ optionator "^0.8.2"
480
+ path-is-inside "^1.0.2"
481
+ pluralize "^7.0.0"
482
+ progress "^2.0.0"
483
+ regexpp "^1.0.1"
484
+ require-uncached "^1.0.3"
485
+ semver "^5.3.0"
486
+ strip-ansi "^4.0.0"
487
+ strip-json-comments "~2.0.1"
488
+ table "4.0.2"
489
+ text-table "~0.2.0"
490
+
491
+ espree@^3.5.4:
492
+ version "3.5.4"
493
+ resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
494
+ dependencies:
495
+ acorn "^5.5.0"
496
+ acorn-jsx "^3.0.0"
497
+
498
+ esprima@2.7.x, esprima@^2.7.1:
499
+ version "2.7.3"
500
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
501
+
502
+ esprima@^4.0.0:
503
+ version "4.0.0"
504
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
505
+
506
+ esquery@^1.0.0:
507
+ version "1.0.1"
508
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
509
+ dependencies:
510
+ estraverse "^4.0.0"
511
+
512
+ esrecurse@^4.1.0:
513
+ version "4.2.1"
514
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
515
+ dependencies:
516
+ estraverse "^4.1.0"
517
+
518
+ estraverse@^1.9.1:
519
+ version "1.9.3"
520
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
521
+
522
+ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
523
+ version "4.2.0"
524
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
525
+
526
+ esutils@^2.0.2:
527
+ version "2.0.2"
528
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
529
+
530
+ extend@~3.0.1:
531
+ version "3.0.1"
532
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
533
+
534
+ external-editor@^2.0.4:
535
+ version "2.2.0"
536
+ resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
537
+ dependencies:
538
+ chardet "^0.4.0"
539
+ iconv-lite "^0.4.17"
540
+ tmp "^0.0.33"
541
+
542
+ extsprintf@1.3.0:
543
+ version "1.3.0"
544
+ resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
545
+
546
+ extsprintf@^1.2.0:
547
+ version "1.4.0"
548
+ resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
549
+
550
+ fast-deep-equal@^1.0.0:
551
+ version "1.1.0"
552
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
553
+
554
+ fast-json-stable-stringify@^2.0.0:
555
+ version "2.0.0"
556
+ resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
557
+
558
+ fast-levenshtein@~2.0.4:
559
+ version "2.0.6"
560
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
561
+
562
+ figures@^2.0.0:
563
+ version "2.0.0"
564
+ resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
565
+ dependencies:
566
+ escape-string-regexp "^1.0.5"
567
+
568
+ file-entry-cache@^2.0.0:
569
+ version "2.0.0"
570
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
571
+ dependencies:
572
+ flat-cache "^1.2.1"
573
+ object-assign "^4.0.1"
574
+
575
+ flat-cache@^1.2.1:
576
+ version "1.3.0"
577
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
578
+ dependencies:
579
+ circular-json "^0.3.1"
580
+ del "^2.0.2"
581
+ graceful-fs "^4.1.2"
582
+ write "^0.2.1"
583
+
584
+ forever-agent@~0.6.1:
585
+ version "0.6.1"
586
+ resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
587
+
588
+ form-data@~2.3.1:
589
+ version "2.3.2"
590
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
591
+ dependencies:
592
+ asynckit "^0.4.0"
593
+ combined-stream "1.0.6"
594
+ mime-types "^2.1.12"
595
+
596
+ fs.realpath@^1.0.0:
597
+ version "1.0.0"
598
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
599
+
600
+ functional-red-black-tree@^1.0.1:
601
+ version "1.0.1"
602
+ resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
603
+
604
+ getpass@^0.1.1:
605
+ version "0.1.7"
606
+ resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
607
+ dependencies:
608
+ assert-plus "^1.0.0"
609
+
610
+ glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
611
+ version "7.1.2"
612
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
613
+ dependencies:
614
+ fs.realpath "^1.0.0"
615
+ inflight "^1.0.4"
616
+ inherits "2"
617
+ minimatch "^3.0.4"
618
+ once "^1.3.0"
619
+ path-is-absolute "^1.0.0"
620
+
621
+ glob@^5.0.15:
622
+ version "5.0.15"
623
+ resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
624
+ dependencies:
625
+ inflight "^1.0.4"
626
+ inherits "2"
627
+ minimatch "2 || 3"
628
+ once "^1.3.0"
629
+ path-is-absolute "^1.0.0"
630
+
631
+ globals@^11.0.1:
632
+ version "11.5.0"
633
+ resolved "https://registry.yarnpkg.com/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642"
634
+
635
+ globby@^5.0.0:
636
+ version "5.0.0"
637
+ resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
638
+ dependencies:
639
+ array-union "^1.0.1"
640
+ arrify "^1.0.0"
641
+ glob "^7.0.3"
642
+ object-assign "^4.0.1"
643
+ pify "^2.0.0"
644
+ pinkie-promise "^2.0.0"
645
+
646
+ graceful-fs@^4.1.2:
647
+ version "4.1.11"
648
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
649
+
650
+ growl@1.10.5:
651
+ version "1.10.5"
652
+ resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
653
+
654
+ handlebars@^4.0.1:
655
+ version "4.0.11"
656
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
657
+ dependencies:
658
+ async "^1.4.0"
659
+ optimist "^0.6.1"
660
+ source-map "^0.4.4"
661
+ optionalDependencies:
662
+ uglify-js "^2.6"
663
+
664
+ har-schema@^2.0.0:
665
+ version "2.0.0"
666
+ resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
667
+
668
+ har-validator@~5.0.3:
669
+ version "5.0.3"
670
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
671
+ dependencies:
672
+ ajv "^5.1.0"
673
+ har-schema "^2.0.0"
674
+
675
+ has-ansi@^2.0.0:
676
+ version "2.0.0"
677
+ resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
678
+ dependencies:
679
+ ansi-regex "^2.0.0"
680
+
681
+ has-flag@^1.0.0:
682
+ version "1.0.0"
683
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
684
+
685
+ has-flag@^3.0.0:
686
+ version "3.0.0"
687
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
688
+
689
+ he@1.1.1:
690
+ version "1.1.1"
691
+ resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
692
+
693
+ http-signature@~1.2.0:
694
+ version "1.2.0"
695
+ resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
696
+ dependencies:
697
+ assert-plus "^1.0.0"
698
+ jsprim "^1.2.2"
699
+ sshpk "^1.7.0"
700
+
701
+ iconv-lite@^0.4.17:
702
+ version "0.4.23"
703
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
704
+ dependencies:
705
+ safer-buffer ">= 2.1.2 < 3"
706
+
707
+ ignore@^3.3.3:
708
+ version "3.3.8"
709
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b"
710
+
711
+ imurmurhash@^0.1.4:
712
+ version "0.1.4"
713
+ resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
714
+
715
+ inflight@^1.0.4:
716
+ version "1.0.6"
717
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
718
+ dependencies:
719
+ once "^1.3.0"
720
+ wrappy "1"
721
+
722
+ inherits@2, inherits@^2.0.3, inherits@~2.0.3:
723
+ version "2.0.3"
724
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
725
+
726
+ inquirer@^3.0.6:
727
+ version "3.3.0"
728
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
729
+ dependencies:
730
+ ansi-escapes "^3.0.0"
731
+ chalk "^2.0.0"
732
+ cli-cursor "^2.1.0"
733
+ cli-width "^2.0.0"
734
+ external-editor "^2.0.4"
735
+ figures "^2.0.0"
736
+ lodash "^4.3.0"
737
+ mute-stream "0.0.7"
738
+ run-async "^2.2.0"
739
+ rx-lite "^4.0.8"
740
+ rx-lite-aggregates "^4.0.8"
741
+ string-width "^2.1.0"
742
+ strip-ansi "^4.0.0"
743
+ through "^2.3.6"
744
+
745
+ is-buffer@^1.1.5:
746
+ version "1.1.6"
747
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
748
+
749
+ is-fullwidth-code-point@^2.0.0:
750
+ version "2.0.0"
751
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
752
+
753
+ is-path-cwd@^1.0.0:
754
+ version "1.0.0"
755
+ resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
756
+
757
+ is-path-in-cwd@^1.0.0:
758
+ version "1.0.1"
759
+ resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
760
+ dependencies:
761
+ is-path-inside "^1.0.0"
762
+
763
+ is-path-inside@^1.0.0:
764
+ version "1.0.1"
765
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
766
+ dependencies:
767
+ path-is-inside "^1.0.1"
768
+
769
+ is-promise@^2.1.0:
770
+ version "2.1.0"
771
+ resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
772
+
773
+ is-resolvable@^1.0.0:
774
+ version "1.1.0"
775
+ resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
776
+
777
+ is-typedarray@~1.0.0:
778
+ version "1.0.0"
779
+ resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
780
+
781
+ isarray@~1.0.0:
782
+ version "1.0.0"
783
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
784
+
785
+ isexe@^2.0.0:
786
+ version "2.0.0"
787
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
788
+
789
+ isstream@~0.1.2:
790
+ version "0.1.2"
791
+ resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
792
+
793
+ istanbul@^0.4.5:
794
+ version "0.4.5"
795
+ resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b"
796
+ dependencies:
797
+ abbrev "1.0.x"
798
+ async "1.x"
799
+ escodegen "1.8.x"
800
+ esprima "2.7.x"
801
+ glob "^5.0.15"
802
+ handlebars "^4.0.1"
803
+ js-yaml "3.x"
804
+ mkdirp "0.5.x"
805
+ nopt "3.x"
806
+ once "1.x"
807
+ resolve "1.1.x"
808
+ supports-color "^3.1.0"
809
+ which "^1.1.1"
810
+ wordwrap "^1.0.0"
811
+
812
+ js-tokens@^3.0.2:
813
+ version "3.0.2"
814
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
815
+
816
+ js-yaml@3.x, js-yaml@^3.6.1, js-yaml@^3.9.1:
817
+ version "3.12.0"
818
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
819
+ dependencies:
820
+ argparse "^1.0.7"
821
+ esprima "^4.0.0"
822
+
823
+ jsbn@~0.1.0:
824
+ version "0.1.1"
825
+ resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
826
+
827
+ json-schema-traverse@^0.3.0:
828
+ version "0.3.1"
829
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
830
+
831
+ json-schema@0.2.3:
832
+ version "0.2.3"
833
+ resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
834
+
835
+ json-stable-stringify-without-jsonify@^1.0.1:
836
+ version "1.0.1"
837
+ resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
838
+
839
+ json-stringify-safe@~5.0.1:
840
+ version "5.0.1"
841
+ resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
842
+
843
+ jsprim@^1.2.2:
844
+ version "1.4.1"
845
+ resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
846
+ dependencies:
847
+ assert-plus "1.0.0"
848
+ extsprintf "1.3.0"
849
+ json-schema "0.2.3"
850
+ verror "1.10.0"
851
+
852
+ kind-of@^3.0.2:
853
+ version "3.2.2"
854
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
855
+ dependencies:
856
+ is-buffer "^1.1.5"
857
+
858
+ lazy-cache@^1.0.3:
859
+ version "1.0.4"
860
+ resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
861
+
862
+ lcov-parse@^0.0.10:
863
+ version "0.0.10"
864
+ resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
865
+
866
+ levn@^0.3.0, levn@~0.3.0:
867
+ version "0.3.0"
868
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
869
+ dependencies:
870
+ prelude-ls "~1.1.2"
871
+ type-check "~0.3.2"
872
+
873
+ lodash@^4.17.4, lodash@^4.3.0:
874
+ version "4.17.10"
875
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
876
+
877
+ log-driver@^1.2.5:
878
+ version "1.2.7"
879
+ resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
880
+
881
+ longest@^1.0.1:
882
+ version "1.0.1"
883
+ resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
884
+
885
+ lru-cache@^4.0.1:
886
+ version "4.1.3"
887
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
888
+ dependencies:
889
+ pseudomap "^1.0.2"
890
+ yallist "^2.1.2"
891
+
892
+ mime-db@~1.33.0:
893
+ version "1.33.0"
894
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
895
+
896
+ mime-types@^2.1.12, mime-types@~2.1.17:
897
+ version "2.1.18"
898
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
899
+ dependencies:
900
+ mime-db "~1.33.0"
901
+
902
+ mimic-fn@^1.0.0:
903
+ version "1.2.0"
904
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
905
+
906
+ "minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4:
907
+ version "3.0.4"
908
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
909
+ dependencies:
910
+ brace-expansion "^1.1.7"
911
+
912
+ minimist@0.0.8:
913
+ version "0.0.8"
914
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
915
+
916
+ minimist@^1.2.0:
917
+ version "1.2.0"
918
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
919
+
920
+ minimist@~0.0.1:
921
+ version "0.0.10"
922
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
923
+
924
+ mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.1:
925
+ version "0.5.1"
926
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
927
+ dependencies:
928
+ minimist "0.0.8"
929
+
930
+ mocha@^5.2.0:
931
+ version "5.2.0"
932
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6"
933
+ dependencies:
934
+ browser-stdout "1.3.1"
935
+ commander "2.15.1"
936
+ debug "3.1.0"
937
+ diff "3.5.0"
938
+ escape-string-regexp "1.0.5"
939
+ glob "7.1.2"
940
+ growl "1.10.5"
941
+ he "1.1.1"
942
+ minimatch "3.0.4"
943
+ mkdirp "0.5.1"
944
+ supports-color "5.4.0"
945
+
946
+ ms@2.0.0:
947
+ version "2.0.0"
948
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
949
+
950
+ mute-stream@0.0.7:
951
+ version "0.0.7"
952
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
953
+
954
+ natural-compare@^1.4.0:
955
+ version "1.4.0"
956
+ resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
957
+
958
+ nopt@3.x:
959
+ version "3.0.6"
960
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
961
+ dependencies:
962
+ abbrev "1"
963
+
964
+ oauth-sign@~0.8.2:
965
+ version "0.8.2"
966
+ resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
967
+
968
+ object-assign@^4.0.1:
969
+ version "4.1.1"
970
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
971
+
972
+ once@1.x, once@^1.3.0:
973
+ version "1.4.0"
974
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
975
+ dependencies:
976
+ wrappy "1"
977
+
978
+ onetime@^2.0.0:
979
+ version "2.0.1"
980
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
981
+ dependencies:
982
+ mimic-fn "^1.0.0"
983
+
984
+ optimist@^0.6.1:
985
+ version "0.6.1"
986
+ resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
987
+ dependencies:
988
+ minimist "~0.0.1"
989
+ wordwrap "~0.0.2"
990
+
991
+ optionator@^0.8.1, optionator@^0.8.2:
992
+ version "0.8.2"
993
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
994
+ dependencies:
995
+ deep-is "~0.1.3"
996
+ fast-levenshtein "~2.0.4"
997
+ levn "~0.3.0"
998
+ prelude-ls "~1.1.2"
999
+ type-check "~0.3.2"
1000
+ wordwrap "~1.0.0"
1001
+
1002
+ os-tmpdir@~1.0.2:
1003
+ version "1.0.2"
1004
+ resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1005
+
1006
+ path-is-absolute@^1.0.0:
1007
+ version "1.0.1"
1008
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1009
+
1010
+ path-is-inside@^1.0.1, path-is-inside@^1.0.2:
1011
+ version "1.0.2"
1012
+ resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1013
+
1014
+ performance-now@^2.1.0:
1015
+ version "2.1.0"
1016
+ resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
1017
+
1018
+ pify@^2.0.0:
1019
+ version "2.3.0"
1020
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1021
+
1022
+ pinkie-promise@^2.0.0:
1023
+ version "2.0.1"
1024
+ resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1025
+ dependencies:
1026
+ pinkie "^2.0.0"
1027
+
1028
+ pinkie@^2.0.0:
1029
+ version "2.0.4"
1030
+ resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1031
+
1032
+ pluralize@^7.0.0:
1033
+ version "7.0.0"
1034
+ resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
1035
+
1036
+ prelude-ls@~1.1.2:
1037
+ version "1.1.2"
1038
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1039
+
1040
+ process-nextick-args@~2.0.0:
1041
+ version "2.0.0"
1042
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
1043
+
1044
+ progress@^2.0.0:
1045
+ version "2.0.0"
1046
+ resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
1047
+
1048
+ pseudomap@^1.0.2:
1049
+ version "1.0.2"
1050
+ resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1051
+
1052
+ punycode@^1.4.1:
1053
+ version "1.4.1"
1054
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1055
+
1056
+ qs@~6.5.1:
1057
+ version "6.5.2"
1058
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
1059
+
1060
+ readable-stream@^2.2.2:
1061
+ version "2.3.6"
1062
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
1063
+ dependencies:
1064
+ core-util-is "~1.0.0"
1065
+ inherits "~2.0.3"
1066
+ isarray "~1.0.0"
1067
+ process-nextick-args "~2.0.0"
1068
+ safe-buffer "~5.1.1"
1069
+ string_decoder "~1.1.1"
1070
+ util-deprecate "~1.0.1"
1071
+
1072
+ regexpp@^1.0.1:
1073
+ version "1.1.0"
1074
+ resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
1075
+
1076
+ repeat-string@^1.5.2:
1077
+ version "1.6.1"
1078
+ resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1079
+
1080
+ request@^2.79.0:
1081
+ version "2.87.0"
1082
+ resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e"
1083
+ dependencies:
1084
+ aws-sign2 "~0.7.0"
1085
+ aws4 "^1.6.0"
1086
+ caseless "~0.12.0"
1087
+ combined-stream "~1.0.5"
1088
+ extend "~3.0.1"
1089
+ forever-agent "~0.6.1"
1090
+ form-data "~2.3.1"
1091
+ har-validator "~5.0.3"
1092
+ http-signature "~1.2.0"
1093
+ is-typedarray "~1.0.0"
1094
+ isstream "~0.1.2"
1095
+ json-stringify-safe "~5.0.1"
1096
+ mime-types "~2.1.17"
1097
+ oauth-sign "~0.8.2"
1098
+ performance-now "^2.1.0"
1099
+ qs "~6.5.1"
1100
+ safe-buffer "^5.1.1"
1101
+ tough-cookie "~2.3.3"
1102
+ tunnel-agent "^0.6.0"
1103
+ uuid "^3.1.0"
1104
+
1105
+ require-uncached@^1.0.3:
1106
+ version "1.0.3"
1107
+ resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1108
+ dependencies:
1109
+ caller-path "^0.1.0"
1110
+ resolve-from "^1.0.0"
1111
+
1112
+ resolve-from@^1.0.0:
1113
+ version "1.0.1"
1114
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1115
+
1116
+ resolve@1.1.x:
1117
+ version "1.1.7"
1118
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
1119
+
1120
+ restore-cursor@^2.0.0:
1121
+ version "2.0.0"
1122
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
1123
+ dependencies:
1124
+ onetime "^2.0.0"
1125
+ signal-exit "^3.0.2"
1126
+
1127
+ right-align@^0.1.1:
1128
+ version "0.1.3"
1129
+ resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
1130
+ dependencies:
1131
+ align-text "^0.1.1"
1132
+
1133
+ rimraf@^2.2.8:
1134
+ version "2.6.2"
1135
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1136
+ dependencies:
1137
+ glob "^7.0.5"
1138
+
1139
+ run-async@^2.2.0:
1140
+ version "2.3.0"
1141
+ resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
1142
+ dependencies:
1143
+ is-promise "^2.1.0"
1144
+
1145
+ rx-lite-aggregates@^4.0.8:
1146
+ version "4.0.8"
1147
+ resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
1148
+ dependencies:
1149
+ rx-lite "*"
1150
+
1151
+ rx-lite@*, rx-lite@^4.0.8:
1152
+ version "4.0.8"
1153
+ resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
1154
+
1155
+ safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1156
+ version "5.1.2"
1157
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1158
+
1159
+ "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2:
1160
+ version "2.1.2"
1161
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1162
+
1163
+ semver@^5.3.0:
1164
+ version "5.5.0"
1165
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
1166
+
1167
+ shebang-command@^1.2.0:
1168
+ version "1.2.0"
1169
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1170
+ dependencies:
1171
+ shebang-regex "^1.0.0"
1172
+
1173
+ shebang-regex@^1.0.0:
1174
+ version "1.0.0"
1175
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1176
+
1177
+ should-equal@^2.0.0:
1178
+ version "2.0.0"
1179
+ resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3"
1180
+ dependencies:
1181
+ should-type "^1.4.0"
1182
+
1183
+ should-format@^3.0.3:
1184
+ version "3.0.3"
1185
+ resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1"
1186
+ dependencies:
1187
+ should-type "^1.3.0"
1188
+ should-type-adaptors "^1.0.1"
1189
+
1190
+ should-type-adaptors@^1.0.1:
1191
+ version "1.1.0"
1192
+ resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a"
1193
+ dependencies:
1194
+ should-type "^1.3.0"
1195
+ should-util "^1.0.0"
1196
+
1197
+ should-type@^1.3.0, should-type@^1.4.0:
1198
+ version "1.4.0"
1199
+ resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3"
1200
+
1201
+ should-util@^1.0.0:
1202
+ version "1.0.0"
1203
+ resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.0.tgz#c98cda374aa6b190df8ba87c9889c2b4db620063"
1204
+
1205
+ should@^13.2.1:
1206
+ version "13.2.1"
1207
+ resolved "https://registry.yarnpkg.com/should/-/should-13.2.1.tgz#84e6ebfbb145c79e0ae42307b25b3f62dcaf574e"
1208
+ dependencies:
1209
+ should-equal "^2.0.0"
1210
+ should-format "^3.0.3"
1211
+ should-type "^1.4.0"
1212
+ should-type-adaptors "^1.0.1"
1213
+ should-util "^1.0.0"
1214
+
1215
+ signal-exit@^3.0.2:
1216
+ version "3.0.2"
1217
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1218
+
1219
+ slice-ansi@1.0.0:
1220
+ version "1.0.0"
1221
+ resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
1222
+ dependencies:
1223
+ is-fullwidth-code-point "^2.0.0"
1224
+
1225
+ source-map@^0.4.4:
1226
+ version "0.4.4"
1227
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
1228
+ dependencies:
1229
+ amdefine ">=0.0.4"
1230
+
1231
+ source-map@~0.2.0:
1232
+ version "0.2.0"
1233
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"
1234
+ dependencies:
1235
+ amdefine ">=0.0.4"
1236
+
1237
+ source-map@~0.5.1:
1238
+ version "0.5.7"
1239
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1240
+
1241
+ sprintf-js@~1.0.2:
1242
+ version "1.0.3"
1243
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1244
+
1245
+ sshpk@^1.7.0:
1246
+ version "1.14.2"
1247
+ resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"
1248
+ dependencies:
1249
+ asn1 "~0.2.3"
1250
+ assert-plus "^1.0.0"
1251
+ dashdash "^1.12.0"
1252
+ getpass "^0.1.1"
1253
+ safer-buffer "^2.0.2"
1254
+ optionalDependencies:
1255
+ bcrypt-pbkdf "^1.0.0"
1256
+ ecc-jsbn "~0.1.1"
1257
+ jsbn "~0.1.0"
1258
+ tweetnacl "~0.14.0"
1259
+
1260
+ string-width@^2.1.0, string-width@^2.1.1:
1261
+ version "2.1.1"
1262
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1263
+ dependencies:
1264
+ is-fullwidth-code-point "^2.0.0"
1265
+ strip-ansi "^4.0.0"
1266
+
1267
+ string_decoder@~1.1.1:
1268
+ version "1.1.1"
1269
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
1270
+ dependencies:
1271
+ safe-buffer "~5.1.0"
1272
+
1273
+ strip-ansi@^3.0.0:
1274
+ version "3.0.1"
1275
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1276
+ dependencies:
1277
+ ansi-regex "^2.0.0"
1278
+
1279
+ strip-ansi@^4.0.0:
1280
+ version "4.0.0"
1281
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1282
+ dependencies:
1283
+ ansi-regex "^3.0.0"
1284
+
1285
+ strip-json-comments@~2.0.1:
1286
+ version "2.0.1"
1287
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1288
+
1289
+ supports-color@5.4.0, supports-color@^5.3.0:
1290
+ version "5.4.0"
1291
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
1292
+ dependencies:
1293
+ has-flag "^3.0.0"
1294
+
1295
+ supports-color@^2.0.0:
1296
+ version "2.0.0"
1297
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1298
+
1299
+ supports-color@^3.1.0:
1300
+ version "3.2.3"
1301
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
1302
+ dependencies:
1303
+ has-flag "^1.0.0"
1304
+
1305
+ table@4.0.2:
1306
+ version "4.0.2"
1307
+ resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
1308
+ dependencies:
1309
+ ajv "^5.2.3"
1310
+ ajv-keywords "^2.1.0"
1311
+ chalk "^2.1.0"
1312
+ lodash "^4.17.4"
1313
+ slice-ansi "1.0.0"
1314
+ string-width "^2.1.1"
1315
+
1316
+ text-table@~0.2.0:
1317
+ version "0.2.0"
1318
+ resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1319
+
1320
+ through@^2.3.6:
1321
+ version "2.3.8"
1322
+ resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1323
+
1324
+ tmp@^0.0.33:
1325
+ version "0.0.33"
1326
+ resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
1327
+ dependencies:
1328
+ os-tmpdir "~1.0.2"
1329
+
1330
+ tough-cookie@~2.3.3:
1331
+ version "2.3.4"
1332
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
1333
+ dependencies:
1334
+ punycode "^1.4.1"
1335
+
1336
+ tunnel-agent@^0.6.0:
1337
+ version "0.6.0"
1338
+ resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1339
+ dependencies:
1340
+ safe-buffer "^5.0.1"
1341
+
1342
+ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1343
+ version "0.14.5"
1344
+ resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1345
+
1346
+ type-check@~0.3.2:
1347
+ version "0.3.2"
1348
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1349
+ dependencies:
1350
+ prelude-ls "~1.1.2"
1351
+
1352
+ typedarray@^0.0.6:
1353
+ version "0.0.6"
1354
+ resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1355
+
1356
+ uglify-js@^2.6:
1357
+ version "2.8.29"
1358
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
1359
+ dependencies:
1360
+ source-map "~0.5.1"
1361
+ yargs "~3.10.0"
1362
+ optionalDependencies:
1363
+ uglify-to-browserify "~1.0.0"
1364
+
1365
+ uglify-to-browserify@~1.0.0:
1366
+ version "1.0.2"
1367
+ resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
1368
+
1369
+ util-deprecate@~1.0.1:
1370
+ version "1.0.2"
1371
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1372
+
1373
+ uuid@^3.1.0:
1374
+ version "3.2.1"
1375
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
1376
+
1377
+ verror@1.10.0:
1378
+ version "1.10.0"
1379
+ resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
1380
+ dependencies:
1381
+ assert-plus "^1.0.0"
1382
+ core-util-is "1.0.2"
1383
+ extsprintf "^1.2.0"
1384
+
1385
+ which@^1.1.1, which@^1.2.9:
1386
+ version "1.3.1"
1387
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
1388
+ dependencies:
1389
+ isexe "^2.0.0"
1390
+
1391
+ window-size@0.1.0:
1392
+ version "0.1.0"
1393
+ resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
1394
+
1395
+ wordwrap@0.0.2:
1396
+ version "0.0.2"
1397
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
1398
+
1399
+ wordwrap@^1.0.0, wordwrap@~1.0.0:
1400
+ version "1.0.0"
1401
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1402
+
1403
+ wordwrap@~0.0.2:
1404
+ version "0.0.3"
1405
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
1406
+
1407
+ wrappy@1:
1408
+ version "1.0.2"
1409
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1410
+
1411
+ write@^0.2.1:
1412
+ version "0.2.1"
1413
+ resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1414
+ dependencies:
1415
+ mkdirp "^0.5.1"
1416
+
1417
+ yallist@^2.1.2:
1418
+ version "2.1.2"
1419
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
1420
+
1421
+ yargs@~3.10.0:
1422
+ version "3.10.0"
1423
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
1424
+ dependencies:
1425
+ camelcase "^1.0.2"
1426
+ cliui "^2.1.0"
1427
+ decamelize "^1.0.0"
1428
+ window-size "0.1.0"
1429
+
1430
+ Trace:
1431
+ Error: Command failed.
1432
+ Exit code: 1
1433
+ Command: sh
1434
+ Arguments: -c mocha --require coffeescript/register
1435
+ Directory: /src/qix-/node-is-arrayish
1436
+ Output:
1437
+
1438
+ at ProcessTermError.MessageError (/Users/junon/.yarn/lib/cli.js:186:110)
1439
+ at new ProcessTermError (/Users/junon/.yarn/lib/cli.js:226:113)
1440
+ at ChildProcess.<anonymous> (/Users/junon/.yarn/lib/cli.js:30281:17)
1441
+ at ChildProcess.emit (events.js:127:13)
1442
+ at maybeClose (internal/child_process.js:933:16)
1443
+ at Process.ChildProcess._handle.onexit (internal/child_process.js:220:5)