Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. ├───.bin
  2. ├───babel-code-frame
  3. │ ├───lib
  4. │ └───node_modules
  5. │ ├───ansi-regex
  6. │ ├───ansi-styles
  7. │ ├───chalk
  8. │ ├───strip-ansi
  9. │ └───supports-color
  10. ├───babel-core
  11. │ ├───lib
  12. │ │ ├───api
  13. │ │ ├───helpers
  14. │ │ ├───tools
  15. │ │ └───transformation
  16. │ │ ├───file
  17. │ │ │ └───options
  18. │ │ └───internal-plugins
  19. │ └───node_modules
  20. │ ├───.bin
  21. │ ├───babylon
  22. │ │ ├───bin
  23. │ │ └───lib
  24. │ ├───debug
  25. │ │ └───src
  26. │ └───source-map
  27. │ ├───dist
  28. │ └───lib
  29. ├───babel-generator
  30. │ ├───lib
  31. │ │ ├───generators
  32. │ │ └───node
  33. │ └───node_modules
  34. │ ├───.bin
  35. │ ├───jsesc
  36. │ │ ├───bin
  37. │ │ └───man
  38. │ └───source-map
  39. │ ├───dist
  40. │ └───lib
  41. ├───babel-helpers
  42. │ └───lib
  43. ├───babel-messages
  44. │ └───lib
  45. ├───babel-register
  46. │ ├───lib
  47. │ └───node_modules
  48. │ ├───source-map
  49. │ │ ├───dist
  50. │ │ └───lib
  51. │ └───source-map-support
  52. ├───babel-runtime
  53. │ ├───core-js
  54. │ │ ├───array
  55. │ │ ├───error
  56. │ │ ├───json
  57. │ │ ├───math
  58. │ │ ├───number
  59. │ │ ├───object
  60. │ │ ├───reflect
  61. │ │ ├───regexp
  62. │ │ ├───string
  63. │ │ ├───symbol
  64. │ │ └───system
  65. │ ├───helpers
  66. │ └───regenerator
  67. ├───babel-template
  68. │ ├───lib
  69. │ └───node_modules
  70. │ ├───.bin
  71. │ └───babylon
  72. │ ├───bin
  73. │ └───lib
  74. ├───babel-traverse
  75. │ ├───lib
  76. │ │ ├───path
  77. │ │ │ ├───inference
  78. │ │ │ └───lib
  79. │ │ └───scope
  80. │ │ └───lib
  81. │ └───node_modules
  82. │ ├───.bin
  83. │ └───babylon
  84. │ ├───bin
  85. │ └───lib
  86. ├───babel-types
  87. │ └───lib
  88. │ └───definitions
  89. ├───balanced-match
  90. ├───brace-expansion
  91. ├───concat-map
  92. │ ├───example
  93. │ └───test
  94. ├───convert-source-map
  95. ├───core-js
  96. │ ├───build
  97. │ ├───client
  98. │ ├───core
  99. │ ├───es5
  100. │ ├───es6
  101. │ ├───es7
  102. │ ├───fn
  103. │ │ ├───array
  104. │ │ │ └───virtual
  105. │ │ ├───date
  106. │ │ ├───dom-collections
  107. │ │ ├───error
  108. │ │ ├───function
  109. │ │ │ └───virtual
  110. │ │ ├───json
  111. │ │ ├───map
  112. │ │ ├───math
  113. │ │ ├───number
  114. │ │ │ └───virtual
  115. │ │ ├───object
  116. │ │ ├───promise
  117. │ │ ├───reflect
  118. │ │ ├───regexp
  119. │ │ ├───set
  120. │ │ ├───string
  121. │ │ │ └───virtual
  122. │ │ ├───symbol
  123. │ │ ├───system
  124. │ │ ├───typed
  125. │ │ ├───weak-map
  126. │ │ └───weak-set
  127. │ ├───library
  128. │ │ ├───core
  129. │ │ ├───es5
  130. │ │ ├───es6
  131. │ │ ├───es7
  132. │ │ ├───fn
  133. │ │ │ ├───array
  134. │ │ │ │ └───virtual
  135. │ │ │ ├───date
  136. │ │ │ ├───dom-collections
  137. │ │ │ ├───error
  138. │ │ │ ├───function
  139. │ │ │ │ └───virtual
  140. │ │ │ ├───json
  141. │ │ │ ├───map
  142. │ │ │ ├───math
  143. │ │ │ ├───number
  144. │ │ │ │ └───virtual
  145. │ │ │ ├───object
  146. │ │ │ ├───promise
  147. │ │ │ ├───reflect
  148. │ │ │ ├───regexp
  149. │ │ │ ├───set
  150. │ │ │ ├───string
  151. │ │ │ │ └───virtual
  152. │ │ │ ├───symbol
  153. │ │ │ ├───system
  154. │ │ │ ├───typed
  155. │ │ │ ├───weak-map
  156. │ │ │ └───weak-set
  157. │ │ ├───modules
  158. │ │ ├───stage
  159. │ │ └───web
  160. │ ├───modules
  161. │ │ └───library
  162. │ ├───stage
  163. │ └───web
  164. ├───debug
  165. │ └───src
  166. ├───detect-indent
  167. ├───escape-string-regexp
  168. ├───esutils
  169. │ └───lib
  170. ├───expand-tilde
  171. ├───global-modules
  172. ├───global-prefix
  173. ├───globals
  174. ├───has-ansi
  175. │ └───node_modules
  176. │ └───ansi-regex
  177. ├───home-or-tmp
  178. ├───homedir-polyfill
  179. ├───ini
  180. ├───invariant
  181. ├───is-finite
  182. ├───is-windows
  183. ├───isexe
  184. │ └───test
  185. ├───js-tokens
  186. ├───json5
  187. │ └───lib
  188. ├───lodash
  189. │ └───fp
  190. ├───loose-envify
  191. ├───minimatch
  192. ├───mkdirp
  193. │ ├───bin
  194. │ ├───examples
  195. │ ├───node_modules
  196. │ │ └───minimist
  197. │ │ ├───example
  198. │ │ └───test
  199. │ └───test
  200. ├───ms
  201. ├───number-is-nan
  202. ├───os-homedir
  203. ├───os-tmpdir
  204. ├───parse-passwd
  205. ├───path-is-absolute
  206. ├───private
  207. ├───regenerator-runtime
  208. ├───repeating
  209. ├───resolve-dir
  210. ├───slash
  211. ├───to-fast-properties
  212. ├───trim-right
  213. └───which
  214. └───bin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement