webpacker-react 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/Gemfile.lock +2 -2
- data/README.md +3 -3
- data/javascript/webpacker_react-npm-module/dist/package.json +1 -1
- data/javascript/webpacker_react-npm-module/package.json +5 -5
- data/javascript/webpacker_react-npm-module/src/index.js +4 -1
- data/javascript/webpacker_react-npm-module/yarn.lock +880 -559
- data/lib/webpacker/react/railtie.rb +4 -0
- data/lib/webpacker/react/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd82216b4881dd69bb037b341705bd2dc5fd931c
|
4
|
+
data.tar.gz: 9d64980d6e77a94222f82cac5b5e654ccc1fb174
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85db2e8f30ba255e74f611aaff2ae0c30f80306c6e820af1b6dd26643d553fdcd8607a1b481f01ea168dc38cf424778e8253324ac0becf690cf9b7978d8faeeb
|
7
|
+
data.tar.gz: 1642380cb0cc1d225bfe475198b2fe38d4a2d9615731aefd20dfb1cbfdd1f94849a162f8d716b3fc080f6f126374304fbc3a631b1caf838fd47d1870f4ac9748
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.3.2] - 2017-09-13
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
- The whole `lodash` library was imported, resulting in a big bundle. Specific `lodash` functions`imports` are now used.
|
13
|
+
- Helpers are now loaded on `ActionView` loading (fixes #38)
|
14
|
+
|
9
15
|
## [0.3.1] - 2017-05-30
|
10
16
|
|
11
17
|
### Fixed
|
@@ -33,7 +39,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
33
39
|
- render React components from controllers using `render react_component: 'name'` (#1 by @daninfpj)
|
34
40
|
- basic Hot Module Remplacement (#7 by @mfazekas)
|
35
41
|
|
36
|
-
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.
|
42
|
+
[Unreleased]: https://github.com/renchap/webpacker-react/compare/v0.3.2...HEAD
|
43
|
+
[0.3.2]: https://github.com/renchap/webpacker-react/tree/v0.3.2
|
37
44
|
[0.3.1]: https://github.com/renchap/webpacker-react/tree/v0.3.1
|
38
45
|
[0.3.0]: https://github.com/renchap/webpacker-react/tree/v0.3.0
|
39
46
|
[0.2.0]: https://github.com/renchap/webpacker-react/tree/v0.2.0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Webpacker-React [![CircleCI](https://circleci.com/gh/renchap/webpacker-react.svg?style=svg)](https://circleci.com/gh/renchap/webpacker-react)
|
2
2
|
|
3
|
-
*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.3.
|
3
|
+
*__Note:__ This is the documentation for the Git master branch. Documentation for the latest release (0.3.2) is [available here](https://github.com/renchap/webpacker-react/tree/v0.3.2).*
|
4
4
|
|
5
5
|
Webpacker-React makes it easy to use [React](https://facebook.github.io/react/) with [Webpacker](https://github.com/rails/webpacker) in your Rails applications.
|
6
6
|
|
@@ -15,7 +15,7 @@ Your Rails application needs to use Webpacker and have the React integration don
|
|
15
15
|
First, you need to add the webpacker-react gem to your Rails app Gemfile:
|
16
16
|
|
17
17
|
```ruby
|
18
|
-
gem 'webpacker-react', "~> 0.3.
|
18
|
+
gem 'webpacker-react', "~> 0.3.2"
|
19
19
|
```
|
20
20
|
|
21
21
|
Once done, run `bundle` to install the gem.
|
@@ -80,7 +80,7 @@ You can pass a `tag` argument to render the React component in another tag than
|
|
80
80
|
|
81
81
|
```erb
|
82
82
|
<%= react_component('Hello', { name: 'React' }, tag: :span, class: 'my-custom-component') %>
|
83
|
-
# This will render <span class="my-custom-component" data-react-class="Hello" data-react-props="..."></
|
83
|
+
# This will render <span class="my-custom-component" data-react-class="Hello" data-react-props="..."></span>
|
84
84
|
```
|
85
85
|
|
86
86
|
### Rendering from a controller
|
@@ -8,11 +8,11 @@
|
|
8
8
|
"devDependencies": {
|
9
9
|
"babel-cli": "^6.18.0",
|
10
10
|
"babel-preset-es2015": "^6.22.0",
|
11
|
-
"eslint": "^
|
12
|
-
"eslint-config-airbnb": "^
|
13
|
-
"eslint-plugin-import": "^2.
|
14
|
-
"eslint-plugin-jsx-a11y": "^
|
15
|
-
"eslint-plugin-react": "^
|
11
|
+
"eslint": "^4.6.1",
|
12
|
+
"eslint-config-airbnb": "^15.1.0",
|
13
|
+
"eslint-plugin-import": "^2.7.0",
|
14
|
+
"eslint-plugin-jsx-a11y": "^5.1.1",
|
15
|
+
"eslint-plugin-react": "^7.3.0"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
18
|
"lodash": "^4.0.0"
|
@@ -1,6 +1,9 @@
|
|
1
1
|
import React from 'react'
|
2
2
|
import ReactDOM from 'react-dom'
|
3
|
-
import
|
3
|
+
import intersection from 'lodash/intersection'
|
4
|
+
import keys from 'lodash/keys'
|
5
|
+
import assign from 'lodash/assign'
|
6
|
+
import omit from 'lodash/omit'
|
4
7
|
import ujs from './ujs'
|
5
8
|
|
6
9
|
const CLASS_ATTRIBUTE_NAME = 'data-react-class'
|
@@ -12,14 +12,14 @@ acorn-jsx@^3.0.0:
|
|
12
12
|
dependencies:
|
13
13
|
acorn "^3.0.4"
|
14
14
|
|
15
|
-
acorn@4.0.4:
|
16
|
-
version "4.0.4"
|
17
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
|
18
|
-
|
19
15
|
acorn@^3.0.4:
|
20
16
|
version "3.3.0"
|
21
17
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
22
18
|
|
19
|
+
acorn@^5.1.1:
|
20
|
+
version "5.1.2"
|
21
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
|
22
|
+
|
23
23
|
ajv-keywords@^1.0.0:
|
24
24
|
version "1.5.1"
|
25
25
|
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
|
@@ -31,18 +31,37 @@ ajv@^4.7.0:
|
|
31
31
|
co "^4.6.0"
|
32
32
|
json-stable-stringify "^1.0.1"
|
33
33
|
|
34
|
-
|
35
|
-
version "
|
36
|
-
resolved "https://registry.yarnpkg.com/
|
34
|
+
ajv@^5.2.0:
|
35
|
+
version "5.2.2"
|
36
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39"
|
37
|
+
dependencies:
|
38
|
+
co "^4.6.0"
|
39
|
+
fast-deep-equal "^1.0.0"
|
40
|
+
json-schema-traverse "^0.3.0"
|
41
|
+
json-stable-stringify "^1.0.1"
|
42
|
+
|
43
|
+
ansi-escapes@^2.0.0:
|
44
|
+
version "2.0.0"
|
45
|
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b"
|
37
46
|
|
38
47
|
ansi-regex@^2.0.0:
|
39
48
|
version "2.1.1"
|
40
49
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
41
50
|
|
51
|
+
ansi-regex@^3.0.0:
|
52
|
+
version "3.0.0"
|
53
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
54
|
+
|
42
55
|
ansi-styles@^2.2.1:
|
43
56
|
version "2.2.1"
|
44
57
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
45
58
|
|
59
|
+
ansi-styles@^3.1.0:
|
60
|
+
version "3.2.0"
|
61
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
|
62
|
+
dependencies:
|
63
|
+
color-convert "^1.9.0"
|
64
|
+
|
46
65
|
anymatch@^1.3.0:
|
47
66
|
version "1.3.0"
|
48
67
|
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
|
@@ -67,9 +86,9 @@ argparse@^1.0.7:
|
|
67
86
|
dependencies:
|
68
87
|
sprintf-js "~1.0.2"
|
69
88
|
|
70
|
-
aria-query@^0.
|
71
|
-
version "0.
|
72
|
-
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.
|
89
|
+
aria-query@^0.7.0:
|
90
|
+
version "0.7.0"
|
91
|
+
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24"
|
73
92
|
dependencies:
|
74
93
|
ast-types-flow "0.0.7"
|
75
94
|
|
@@ -83,6 +102,13 @@ arr-flatten@^1.0.1:
|
|
83
102
|
version "1.0.1"
|
84
103
|
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
|
85
104
|
|
105
|
+
array-includes@^3.0.3:
|
106
|
+
version "3.0.3"
|
107
|
+
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
|
108
|
+
dependencies:
|
109
|
+
define-properties "^1.1.2"
|
110
|
+
es-abstract "^1.7.0"
|
111
|
+
|
86
112
|
array-union@^1.0.1:
|
87
113
|
version "1.0.2"
|
88
114
|
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
@@ -97,17 +123,14 @@ array-unique@^0.2.1:
|
|
97
123
|
version "0.2.1"
|
98
124
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
|
99
125
|
|
100
|
-
array.prototype.find@^2.0.1:
|
101
|
-
version "2.0.3"
|
102
|
-
resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d"
|
103
|
-
dependencies:
|
104
|
-
define-properties "^1.1.2"
|
105
|
-
es-abstract "^1.7.0"
|
106
|
-
|
107
126
|
arrify@^1.0.0:
|
108
127
|
version "1.0.1"
|
109
128
|
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
110
129
|
|
130
|
+
asap@~2.0.3:
|
131
|
+
version "2.0.6"
|
132
|
+
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
|
133
|
+
|
111
134
|
asn1@~0.2.3:
|
112
135
|
version "0.2.3"
|
113
136
|
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
@@ -140,146 +163,152 @@ aws4@^1.2.1:
|
|
140
163
|
version "1.6.0"
|
141
164
|
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
142
165
|
|
143
|
-
|
144
|
-
version "
|
145
|
-
resolved "https://registry.yarnpkg.com/
|
166
|
+
axobject-query@^0.1.0:
|
167
|
+
version "0.1.0"
|
168
|
+
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
|
146
169
|
dependencies:
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
170
|
+
ast-types-flow "0.0.7"
|
171
|
+
|
172
|
+
babel-cli@^6.18.0:
|
173
|
+
version "6.26.0"
|
174
|
+
resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
|
175
|
+
dependencies:
|
176
|
+
babel-core "^6.26.0"
|
177
|
+
babel-polyfill "^6.26.0"
|
178
|
+
babel-register "^6.26.0"
|
179
|
+
babel-runtime "^6.26.0"
|
180
|
+
commander "^2.11.0"
|
181
|
+
convert-source-map "^1.5.0"
|
153
182
|
fs-readdir-recursive "^1.0.0"
|
154
|
-
glob "^7.
|
155
|
-
lodash "^4.
|
156
|
-
output-file-sync "^1.1.
|
157
|
-
path-is-absolute "^1.0.
|
183
|
+
glob "^7.1.2"
|
184
|
+
lodash "^4.17.4"
|
185
|
+
output-file-sync "^1.1.2"
|
186
|
+
path-is-absolute "^1.0.1"
|
158
187
|
slash "^1.0.0"
|
159
|
-
source-map "^0.5.
|
160
|
-
v8flags "^2.
|
188
|
+
source-map "^0.5.6"
|
189
|
+
v8flags "^2.1.1"
|
161
190
|
optionalDependencies:
|
162
191
|
chokidar "^1.6.1"
|
163
192
|
|
164
|
-
babel-code-frame@^6.
|
165
|
-
version "6.
|
166
|
-
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.
|
193
|
+
babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
|
194
|
+
version "6.26.0"
|
195
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
167
196
|
dependencies:
|
168
|
-
chalk "^1.1.
|
197
|
+
chalk "^1.1.3"
|
169
198
|
esutils "^2.0.2"
|
170
|
-
js-tokens "^3.0.
|
199
|
+
js-tokens "^3.0.2"
|
171
200
|
|
172
|
-
babel-core@^6.
|
173
|
-
version "6.
|
174
|
-
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.
|
201
|
+
babel-core@^6.26.0:
|
202
|
+
version "6.26.0"
|
203
|
+
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
|
175
204
|
dependencies:
|
176
|
-
babel-code-frame "^6.
|
177
|
-
babel-generator "^6.
|
178
|
-
babel-helpers "^6.
|
205
|
+
babel-code-frame "^6.26.0"
|
206
|
+
babel-generator "^6.26.0"
|
207
|
+
babel-helpers "^6.24.1"
|
179
208
|
babel-messages "^6.23.0"
|
180
|
-
babel-register "^6.
|
181
|
-
babel-runtime "^6.
|
182
|
-
babel-template "^6.
|
183
|
-
babel-traverse "^6.
|
184
|
-
babel-types "^6.
|
185
|
-
babylon "^6.
|
186
|
-
convert-source-map "^1.
|
187
|
-
debug "^2.
|
188
|
-
json5 "^0.5.
|
189
|
-
lodash "^4.
|
190
|
-
minimatch "^3.0.
|
191
|
-
path-is-absolute "^1.0.
|
192
|
-
private "^0.1.
|
209
|
+
babel-register "^6.26.0"
|
210
|
+
babel-runtime "^6.26.0"
|
211
|
+
babel-template "^6.26.0"
|
212
|
+
babel-traverse "^6.26.0"
|
213
|
+
babel-types "^6.26.0"
|
214
|
+
babylon "^6.18.0"
|
215
|
+
convert-source-map "^1.5.0"
|
216
|
+
debug "^2.6.8"
|
217
|
+
json5 "^0.5.1"
|
218
|
+
lodash "^4.17.4"
|
219
|
+
minimatch "^3.0.4"
|
220
|
+
path-is-absolute "^1.0.1"
|
221
|
+
private "^0.1.7"
|
193
222
|
slash "^1.0.0"
|
194
|
-
source-map "^0.5.
|
223
|
+
source-map "^0.5.6"
|
195
224
|
|
196
|
-
babel-generator@^6.
|
197
|
-
version "6.
|
198
|
-
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.
|
225
|
+
babel-generator@^6.26.0:
|
226
|
+
version "6.26.0"
|
227
|
+
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
|
199
228
|
dependencies:
|
200
229
|
babel-messages "^6.23.0"
|
201
|
-
babel-runtime "^6.
|
202
|
-
babel-types "^6.
|
230
|
+
babel-runtime "^6.26.0"
|
231
|
+
babel-types "^6.26.0"
|
203
232
|
detect-indent "^4.0.0"
|
204
233
|
jsesc "^1.3.0"
|
205
|
-
lodash "^4.
|
206
|
-
source-map "^0.5.
|
234
|
+
lodash "^4.17.4"
|
235
|
+
source-map "^0.5.6"
|
207
236
|
trim-right "^1.0.1"
|
208
237
|
|
209
|
-
babel-helper-call-delegate@^6.
|
210
|
-
version "6.
|
211
|
-
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.
|
238
|
+
babel-helper-call-delegate@^6.24.1:
|
239
|
+
version "6.24.1"
|
240
|
+
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
|
212
241
|
dependencies:
|
213
|
-
babel-helper-hoist-variables "^6.
|
242
|
+
babel-helper-hoist-variables "^6.24.1"
|
214
243
|
babel-runtime "^6.22.0"
|
215
|
-
babel-traverse "^6.
|
216
|
-
babel-types "^6.
|
244
|
+
babel-traverse "^6.24.1"
|
245
|
+
babel-types "^6.24.1"
|
217
246
|
|
218
|
-
babel-helper-define-map@^6.
|
219
|
-
version "6.
|
220
|
-
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.
|
247
|
+
babel-helper-define-map@^6.24.1:
|
248
|
+
version "6.26.0"
|
249
|
+
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
|
221
250
|
dependencies:
|
222
|
-
babel-helper-function-name "^6.
|
223
|
-
babel-runtime "^6.
|
224
|
-
babel-types "^6.
|
225
|
-
lodash "^4.
|
251
|
+
babel-helper-function-name "^6.24.1"
|
252
|
+
babel-runtime "^6.26.0"
|
253
|
+
babel-types "^6.26.0"
|
254
|
+
lodash "^4.17.4"
|
226
255
|
|
227
|
-
babel-helper-function-name@^6.
|
228
|
-
version "6.
|
229
|
-
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.
|
256
|
+
babel-helper-function-name@^6.24.1:
|
257
|
+
version "6.24.1"
|
258
|
+
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
|
230
259
|
dependencies:
|
231
|
-
babel-helper-get-function-arity "^6.
|
260
|
+
babel-helper-get-function-arity "^6.24.1"
|
232
261
|
babel-runtime "^6.22.0"
|
233
|
-
babel-template "^6.
|
234
|
-
babel-traverse "^6.
|
235
|
-
babel-types "^6.
|
262
|
+
babel-template "^6.24.1"
|
263
|
+
babel-traverse "^6.24.1"
|
264
|
+
babel-types "^6.24.1"
|
236
265
|
|
237
|
-
babel-helper-get-function-arity@^6.
|
238
|
-
version "6.
|
239
|
-
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.
|
266
|
+
babel-helper-get-function-arity@^6.24.1:
|
267
|
+
version "6.24.1"
|
268
|
+
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
|
240
269
|
dependencies:
|
241
270
|
babel-runtime "^6.22.0"
|
242
|
-
babel-types "^6.
|
271
|
+
babel-types "^6.24.1"
|
243
272
|
|
244
|
-
babel-helper-hoist-variables@^6.
|
245
|
-
version "6.
|
246
|
-
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.
|
273
|
+
babel-helper-hoist-variables@^6.24.1:
|
274
|
+
version "6.24.1"
|
275
|
+
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
|
247
276
|
dependencies:
|
248
277
|
babel-runtime "^6.22.0"
|
249
|
-
babel-types "^6.
|
278
|
+
babel-types "^6.24.1"
|
250
279
|
|
251
|
-
babel-helper-optimise-call-expression@^6.
|
252
|
-
version "6.
|
253
|
-
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.
|
280
|
+
babel-helper-optimise-call-expression@^6.24.1:
|
281
|
+
version "6.24.1"
|
282
|
+
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
|
254
283
|
dependencies:
|
255
284
|
babel-runtime "^6.22.0"
|
256
|
-
babel-types "^6.
|
285
|
+
babel-types "^6.24.1"
|
257
286
|
|
258
|
-
babel-helper-regex@^6.
|
259
|
-
version "6.
|
260
|
-
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.
|
287
|
+
babel-helper-regex@^6.24.1:
|
288
|
+
version "6.26.0"
|
289
|
+
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
|
261
290
|
dependencies:
|
262
|
-
babel-runtime "^6.
|
263
|
-
babel-types "^6.
|
264
|
-
lodash "^4.
|
291
|
+
babel-runtime "^6.26.0"
|
292
|
+
babel-types "^6.26.0"
|
293
|
+
lodash "^4.17.4"
|
265
294
|
|
266
|
-
babel-helper-replace-supers@^6.
|
267
|
-
version "6.
|
268
|
-
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.
|
295
|
+
babel-helper-replace-supers@^6.24.1:
|
296
|
+
version "6.24.1"
|
297
|
+
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
|
269
298
|
dependencies:
|
270
|
-
babel-helper-optimise-call-expression "^6.
|
299
|
+
babel-helper-optimise-call-expression "^6.24.1"
|
271
300
|
babel-messages "^6.23.0"
|
272
301
|
babel-runtime "^6.22.0"
|
273
|
-
babel-template "^6.
|
274
|
-
babel-traverse "^6.
|
275
|
-
babel-types "^6.
|
302
|
+
babel-template "^6.24.1"
|
303
|
+
babel-traverse "^6.24.1"
|
304
|
+
babel-types "^6.24.1"
|
276
305
|
|
277
|
-
babel-helpers@^6.
|
278
|
-
version "6.
|
279
|
-
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.
|
306
|
+
babel-helpers@^6.24.1:
|
307
|
+
version "6.24.1"
|
308
|
+
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
|
280
309
|
dependencies:
|
281
310
|
babel-runtime "^6.22.0"
|
282
|
-
babel-template "^6.
|
311
|
+
babel-template "^6.24.1"
|
283
312
|
|
284
313
|
babel-messages@^6.23.0:
|
285
314
|
version "6.23.0"
|
@@ -305,36 +334,36 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
|
|
305
334
|
dependencies:
|
306
335
|
babel-runtime "^6.22.0"
|
307
336
|
|
308
|
-
babel-plugin-transform-es2015-block-scoping@^6.
|
309
|
-
version "6.
|
310
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.
|
337
|
+
babel-plugin-transform-es2015-block-scoping@^6.24.1:
|
338
|
+
version "6.26.0"
|
339
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
|
311
340
|
dependencies:
|
312
|
-
babel-runtime "^6.
|
313
|
-
babel-template "^6.
|
314
|
-
babel-traverse "^6.
|
315
|
-
babel-types "^6.
|
316
|
-
lodash "^4.
|
341
|
+
babel-runtime "^6.26.0"
|
342
|
+
babel-template "^6.26.0"
|
343
|
+
babel-traverse "^6.26.0"
|
344
|
+
babel-types "^6.26.0"
|
345
|
+
lodash "^4.17.4"
|
317
346
|
|
318
|
-
babel-plugin-transform-es2015-classes@^6.
|
319
|
-
version "6.
|
320
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.
|
347
|
+
babel-plugin-transform-es2015-classes@^6.24.1:
|
348
|
+
version "6.24.1"
|
349
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
|
321
350
|
dependencies:
|
322
|
-
babel-helper-define-map "^6.
|
323
|
-
babel-helper-function-name "^6.
|
324
|
-
babel-helper-optimise-call-expression "^6.
|
325
|
-
babel-helper-replace-supers "^6.
|
351
|
+
babel-helper-define-map "^6.24.1"
|
352
|
+
babel-helper-function-name "^6.24.1"
|
353
|
+
babel-helper-optimise-call-expression "^6.24.1"
|
354
|
+
babel-helper-replace-supers "^6.24.1"
|
326
355
|
babel-messages "^6.23.0"
|
327
356
|
babel-runtime "^6.22.0"
|
328
|
-
babel-template "^6.
|
329
|
-
babel-traverse "^6.
|
330
|
-
babel-types "^6.
|
357
|
+
babel-template "^6.24.1"
|
358
|
+
babel-traverse "^6.24.1"
|
359
|
+
babel-types "^6.24.1"
|
331
360
|
|
332
|
-
babel-plugin-transform-es2015-computed-properties@^6.
|
333
|
-
version "6.
|
334
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.
|
361
|
+
babel-plugin-transform-es2015-computed-properties@^6.24.1:
|
362
|
+
version "6.24.1"
|
363
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
|
335
364
|
dependencies:
|
336
365
|
babel-runtime "^6.22.0"
|
337
|
-
babel-template "^6.
|
366
|
+
babel-template "^6.24.1"
|
338
367
|
|
339
368
|
babel-plugin-transform-es2015-destructuring@^6.22.0:
|
340
369
|
version "6.23.0"
|
@@ -342,12 +371,12 @@ babel-plugin-transform-es2015-destructuring@^6.22.0:
|
|
342
371
|
dependencies:
|
343
372
|
babel-runtime "^6.22.0"
|
344
373
|
|
345
|
-
babel-plugin-transform-es2015-duplicate-keys@^6.
|
346
|
-
version "6.
|
347
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.
|
374
|
+
babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
|
375
|
+
version "6.24.1"
|
376
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
|
348
377
|
dependencies:
|
349
378
|
babel-runtime "^6.22.0"
|
350
|
-
babel-types "^6.
|
379
|
+
babel-types "^6.24.1"
|
351
380
|
|
352
381
|
babel-plugin-transform-es2015-for-of@^6.22.0:
|
353
382
|
version "6.23.0"
|
@@ -355,13 +384,13 @@ babel-plugin-transform-es2015-for-of@^6.22.0:
|
|
355
384
|
dependencies:
|
356
385
|
babel-runtime "^6.22.0"
|
357
386
|
|
358
|
-
babel-plugin-transform-es2015-function-name@^6.
|
359
|
-
version "6.
|
360
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.
|
387
|
+
babel-plugin-transform-es2015-function-name@^6.24.1:
|
388
|
+
version "6.24.1"
|
389
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
|
361
390
|
dependencies:
|
362
|
-
babel-helper-function-name "^6.
|
391
|
+
babel-helper-function-name "^6.24.1"
|
363
392
|
babel-runtime "^6.22.0"
|
364
|
-
babel-types "^6.
|
393
|
+
babel-types "^6.24.1"
|
365
394
|
|
366
395
|
babel-plugin-transform-es2015-literals@^6.22.0:
|
367
396
|
version "6.22.0"
|
@@ -369,63 +398,63 @@ babel-plugin-transform-es2015-literals@^6.22.0:
|
|
369
398
|
dependencies:
|
370
399
|
babel-runtime "^6.22.0"
|
371
400
|
|
372
|
-
babel-plugin-transform-es2015-modules-amd@^6.
|
373
|
-
version "6.
|
374
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.
|
401
|
+
babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
402
|
+
version "6.24.1"
|
403
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
|
375
404
|
dependencies:
|
376
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.
|
405
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
|
377
406
|
babel-runtime "^6.22.0"
|
378
|
-
babel-template "^6.
|
407
|
+
babel-template "^6.24.1"
|
379
408
|
|
380
|
-
babel-plugin-transform-es2015-modules-commonjs@^6.
|
381
|
-
version "6.
|
382
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.
|
409
|
+
babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
|
410
|
+
version "6.26.0"
|
411
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
|
383
412
|
dependencies:
|
384
|
-
babel-plugin-transform-strict-mode "^6.
|
385
|
-
babel-runtime "^6.
|
386
|
-
babel-template "^6.
|
387
|
-
babel-types "^6.
|
413
|
+
babel-plugin-transform-strict-mode "^6.24.1"
|
414
|
+
babel-runtime "^6.26.0"
|
415
|
+
babel-template "^6.26.0"
|
416
|
+
babel-types "^6.26.0"
|
388
417
|
|
389
|
-
babel-plugin-transform-es2015-modules-systemjs@^6.
|
390
|
-
version "6.
|
391
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.
|
418
|
+
babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
419
|
+
version "6.24.1"
|
420
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
|
392
421
|
dependencies:
|
393
|
-
babel-helper-hoist-variables "^6.
|
422
|
+
babel-helper-hoist-variables "^6.24.1"
|
394
423
|
babel-runtime "^6.22.0"
|
395
|
-
babel-template "^6.
|
424
|
+
babel-template "^6.24.1"
|
396
425
|
|
397
|
-
babel-plugin-transform-es2015-modules-umd@^6.
|
398
|
-
version "6.
|
399
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.
|
426
|
+
babel-plugin-transform-es2015-modules-umd@^6.24.1:
|
427
|
+
version "6.24.1"
|
428
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
|
400
429
|
dependencies:
|
401
|
-
babel-plugin-transform-es2015-modules-amd "^6.
|
430
|
+
babel-plugin-transform-es2015-modules-amd "^6.24.1"
|
402
431
|
babel-runtime "^6.22.0"
|
403
|
-
babel-template "^6.
|
432
|
+
babel-template "^6.24.1"
|
404
433
|
|
405
|
-
babel-plugin-transform-es2015-object-super@^6.
|
406
|
-
version "6.
|
407
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.
|
434
|
+
babel-plugin-transform-es2015-object-super@^6.24.1:
|
435
|
+
version "6.24.1"
|
436
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
408
437
|
dependencies:
|
409
|
-
babel-helper-replace-supers "^6.
|
438
|
+
babel-helper-replace-supers "^6.24.1"
|
410
439
|
babel-runtime "^6.22.0"
|
411
440
|
|
412
|
-
babel-plugin-transform-es2015-parameters@^6.
|
413
|
-
version "6.
|
414
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.
|
441
|
+
babel-plugin-transform-es2015-parameters@^6.24.1:
|
442
|
+
version "6.24.1"
|
443
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
|
415
444
|
dependencies:
|
416
|
-
babel-helper-call-delegate "^6.
|
417
|
-
babel-helper-get-function-arity "^6.
|
445
|
+
babel-helper-call-delegate "^6.24.1"
|
446
|
+
babel-helper-get-function-arity "^6.24.1"
|
418
447
|
babel-runtime "^6.22.0"
|
419
|
-
babel-template "^6.
|
420
|
-
babel-traverse "^6.
|
421
|
-
babel-types "^6.
|
448
|
+
babel-template "^6.24.1"
|
449
|
+
babel-traverse "^6.24.1"
|
450
|
+
babel-types "^6.24.1"
|
422
451
|
|
423
|
-
babel-plugin-transform-es2015-shorthand-properties@^6.
|
424
|
-
version "6.
|
425
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.
|
452
|
+
babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
|
453
|
+
version "6.24.1"
|
454
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
|
426
455
|
dependencies:
|
427
456
|
babel-runtime "^6.22.0"
|
428
|
-
babel-types "^6.
|
457
|
+
babel-types "^6.24.1"
|
429
458
|
|
430
459
|
babel-plugin-transform-es2015-spread@^6.22.0:
|
431
460
|
version "6.22.0"
|
@@ -433,13 +462,13 @@ babel-plugin-transform-es2015-spread@^6.22.0:
|
|
433
462
|
dependencies:
|
434
463
|
babel-runtime "^6.22.0"
|
435
464
|
|
436
|
-
babel-plugin-transform-es2015-sticky-regex@^6.
|
437
|
-
version "6.
|
438
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.
|
465
|
+
babel-plugin-transform-es2015-sticky-regex@^6.24.1:
|
466
|
+
version "6.24.1"
|
467
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
|
439
468
|
dependencies:
|
440
|
-
babel-helper-regex "^6.
|
469
|
+
babel-helper-regex "^6.24.1"
|
441
470
|
babel-runtime "^6.22.0"
|
442
|
-
babel-types "^6.
|
471
|
+
babel-types "^6.24.1"
|
443
472
|
|
444
473
|
babel-plugin-transform-es2015-template-literals@^6.22.0:
|
445
474
|
version "6.22.0"
|
@@ -453,75 +482,75 @@ babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
|
|
453
482
|
dependencies:
|
454
483
|
babel-runtime "^6.22.0"
|
455
484
|
|
456
|
-
babel-plugin-transform-es2015-unicode-regex@^6.
|
457
|
-
version "6.
|
458
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.
|
485
|
+
babel-plugin-transform-es2015-unicode-regex@^6.24.1:
|
486
|
+
version "6.24.1"
|
487
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
|
459
488
|
dependencies:
|
460
|
-
babel-helper-regex "^6.
|
489
|
+
babel-helper-regex "^6.24.1"
|
461
490
|
babel-runtime "^6.22.0"
|
462
491
|
regexpu-core "^2.0.0"
|
463
492
|
|
464
|
-
babel-plugin-transform-regenerator@^6.
|
465
|
-
version "6.
|
466
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.
|
493
|
+
babel-plugin-transform-regenerator@^6.24.1:
|
494
|
+
version "6.26.0"
|
495
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
|
467
496
|
dependencies:
|
468
|
-
regenerator-transform "0.
|
497
|
+
regenerator-transform "^0.10.0"
|
469
498
|
|
470
|
-
babel-plugin-transform-strict-mode@^6.
|
471
|
-
version "6.
|
472
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.
|
499
|
+
babel-plugin-transform-strict-mode@^6.24.1:
|
500
|
+
version "6.24.1"
|
501
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
|
473
502
|
dependencies:
|
474
503
|
babel-runtime "^6.22.0"
|
475
|
-
babel-types "^6.
|
504
|
+
babel-types "^6.24.1"
|
476
505
|
|
477
|
-
babel-polyfill@^6.
|
478
|
-
version "6.
|
479
|
-
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.
|
506
|
+
babel-polyfill@^6.26.0:
|
507
|
+
version "6.26.0"
|
508
|
+
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
|
480
509
|
dependencies:
|
481
|
-
babel-runtime "^6.
|
482
|
-
core-js "^2.
|
483
|
-
regenerator-runtime "^0.10.
|
510
|
+
babel-runtime "^6.26.0"
|
511
|
+
core-js "^2.5.0"
|
512
|
+
regenerator-runtime "^0.10.5"
|
484
513
|
|
485
514
|
babel-preset-es2015@^6.22.0:
|
486
|
-
version "6.
|
487
|
-
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.
|
515
|
+
version "6.24.1"
|
516
|
+
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
|
488
517
|
dependencies:
|
489
518
|
babel-plugin-check-es2015-constants "^6.22.0"
|
490
519
|
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
491
520
|
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
492
|
-
babel-plugin-transform-es2015-block-scoping "^6.
|
493
|
-
babel-plugin-transform-es2015-classes "^6.
|
494
|
-
babel-plugin-transform-es2015-computed-properties "^6.
|
521
|
+
babel-plugin-transform-es2015-block-scoping "^6.24.1"
|
522
|
+
babel-plugin-transform-es2015-classes "^6.24.1"
|
523
|
+
babel-plugin-transform-es2015-computed-properties "^6.24.1"
|
495
524
|
babel-plugin-transform-es2015-destructuring "^6.22.0"
|
496
|
-
babel-plugin-transform-es2015-duplicate-keys "^6.
|
525
|
+
babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
|
497
526
|
babel-plugin-transform-es2015-for-of "^6.22.0"
|
498
|
-
babel-plugin-transform-es2015-function-name "^6.
|
527
|
+
babel-plugin-transform-es2015-function-name "^6.24.1"
|
499
528
|
babel-plugin-transform-es2015-literals "^6.22.0"
|
500
|
-
babel-plugin-transform-es2015-modules-amd "^6.
|
501
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.
|
502
|
-
babel-plugin-transform-es2015-modules-systemjs "^6.
|
503
|
-
babel-plugin-transform-es2015-modules-umd "^6.
|
504
|
-
babel-plugin-transform-es2015-object-super "^6.
|
505
|
-
babel-plugin-transform-es2015-parameters "^6.
|
506
|
-
babel-plugin-transform-es2015-shorthand-properties "^6.
|
529
|
+
babel-plugin-transform-es2015-modules-amd "^6.24.1"
|
530
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
|
531
|
+
babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
|
532
|
+
babel-plugin-transform-es2015-modules-umd "^6.24.1"
|
533
|
+
babel-plugin-transform-es2015-object-super "^6.24.1"
|
534
|
+
babel-plugin-transform-es2015-parameters "^6.24.1"
|
535
|
+
babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
|
507
536
|
babel-plugin-transform-es2015-spread "^6.22.0"
|
508
|
-
babel-plugin-transform-es2015-sticky-regex "^6.
|
537
|
+
babel-plugin-transform-es2015-sticky-regex "^6.24.1"
|
509
538
|
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
510
539
|
babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
|
511
|
-
babel-plugin-transform-es2015-unicode-regex "^6.
|
512
|
-
babel-plugin-transform-regenerator "^6.
|
540
|
+
babel-plugin-transform-es2015-unicode-regex "^6.24.1"
|
541
|
+
babel-plugin-transform-regenerator "^6.24.1"
|
513
542
|
|
514
|
-
babel-register@^6.
|
515
|
-
version "6.
|
516
|
-
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.
|
543
|
+
babel-register@^6.26.0:
|
544
|
+
version "6.26.0"
|
545
|
+
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
|
517
546
|
dependencies:
|
518
|
-
babel-core "^6.
|
519
|
-
babel-runtime "^6.
|
520
|
-
core-js "^2.
|
547
|
+
babel-core "^6.26.0"
|
548
|
+
babel-runtime "^6.26.0"
|
549
|
+
core-js "^2.5.0"
|
521
550
|
home-or-tmp "^2.0.0"
|
522
|
-
lodash "^4.
|
551
|
+
lodash "^4.17.4"
|
523
552
|
mkdirp "^0.5.1"
|
524
|
-
source-map-support "^0.4.
|
553
|
+
source-map-support "^0.4.15"
|
525
554
|
|
526
555
|
babel-runtime@^6.18.0, babel-runtime@^6.22.0:
|
527
556
|
version "6.23.0"
|
@@ -530,31 +559,38 @@ babel-runtime@^6.18.0, babel-runtime@^6.22.0:
|
|
530
559
|
core-js "^2.4.0"
|
531
560
|
regenerator-runtime "^0.10.0"
|
532
561
|
|
533
|
-
babel-
|
534
|
-
version "6.
|
535
|
-
resolved "https://registry.yarnpkg.com/babel-
|
562
|
+
babel-runtime@^6.26.0:
|
563
|
+
version "6.26.0"
|
564
|
+
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
536
565
|
dependencies:
|
537
|
-
|
538
|
-
|
539
|
-
babel-types "^6.23.0"
|
540
|
-
babylon "^6.11.0"
|
541
|
-
lodash "^4.2.0"
|
566
|
+
core-js "^2.4.0"
|
567
|
+
regenerator-runtime "^0.11.0"
|
542
568
|
|
543
|
-
babel-
|
544
|
-
version "6.
|
545
|
-
resolved "https://registry.yarnpkg.com/babel-
|
569
|
+
babel-template@^6.24.1, babel-template@^6.26.0:
|
570
|
+
version "6.26.0"
|
571
|
+
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
|
546
572
|
dependencies:
|
547
|
-
babel-
|
548
|
-
babel-
|
549
|
-
babel-
|
550
|
-
|
551
|
-
|
552
|
-
debug "^2.2.0"
|
553
|
-
globals "^9.0.0"
|
554
|
-
invariant "^2.2.0"
|
555
|
-
lodash "^4.2.0"
|
573
|
+
babel-runtime "^6.26.0"
|
574
|
+
babel-traverse "^6.26.0"
|
575
|
+
babel-types "^6.26.0"
|
576
|
+
babylon "^6.18.0"
|
577
|
+
lodash "^4.17.4"
|
556
578
|
|
557
|
-
babel-
|
579
|
+
babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
580
|
+
version "6.26.0"
|
581
|
+
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
582
|
+
dependencies:
|
583
|
+
babel-code-frame "^6.26.0"
|
584
|
+
babel-messages "^6.23.0"
|
585
|
+
babel-runtime "^6.26.0"
|
586
|
+
babel-types "^6.26.0"
|
587
|
+
babylon "^6.18.0"
|
588
|
+
debug "^2.6.8"
|
589
|
+
globals "^9.18.0"
|
590
|
+
invariant "^2.2.2"
|
591
|
+
lodash "^4.17.4"
|
592
|
+
|
593
|
+
babel-types@^6.19.0:
|
558
594
|
version "6.23.0"
|
559
595
|
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
|
560
596
|
dependencies:
|
@@ -563,14 +599,27 @@ babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
|
|
563
599
|
lodash "^4.2.0"
|
564
600
|
to-fast-properties "^1.0.1"
|
565
601
|
|
566
|
-
|
567
|
-
version "6.
|
568
|
-
resolved "https://registry.yarnpkg.com/
|
602
|
+
babel-types@^6.24.1, babel-types@^6.26.0:
|
603
|
+
version "6.26.0"
|
604
|
+
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
605
|
+
dependencies:
|
606
|
+
babel-runtime "^6.26.0"
|
607
|
+
esutils "^2.0.2"
|
608
|
+
lodash "^4.17.4"
|
609
|
+
to-fast-properties "^1.0.3"
|
610
|
+
|
611
|
+
babylon@^6.18.0:
|
612
|
+
version "6.18.0"
|
613
|
+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
569
614
|
|
570
615
|
balanced-match@^0.4.1:
|
571
616
|
version "0.4.2"
|
572
617
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
|
573
618
|
|
619
|
+
balanced-match@^1.0.0:
|
620
|
+
version "1.0.0"
|
621
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
622
|
+
|
574
623
|
bcrypt-pbkdf@^1.0.0:
|
575
624
|
version "1.0.1"
|
576
625
|
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
|
@@ -600,6 +649,13 @@ brace-expansion@^1.0.0:
|
|
600
649
|
balanced-match "^0.4.1"
|
601
650
|
concat-map "0.0.1"
|
602
651
|
|
652
|
+
brace-expansion@^1.1.7:
|
653
|
+
version "1.1.8"
|
654
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
|
655
|
+
dependencies:
|
656
|
+
balanced-match "^1.0.0"
|
657
|
+
concat-map "0.0.1"
|
658
|
+
|
603
659
|
braces@^1.8.2:
|
604
660
|
version "1.8.5"
|
605
661
|
resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
|
@@ -612,7 +668,7 @@ buffer-shims@^1.0.0:
|
|
612
668
|
version "1.0.0"
|
613
669
|
resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
|
614
670
|
|
615
|
-
builtin-modules@^1.1.1:
|
671
|
+
builtin-modules@^1.0.0, builtin-modules@^1.1.1:
|
616
672
|
version "1.1.1"
|
617
673
|
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
618
674
|
|
@@ -630,7 +686,7 @@ caseless@~0.11.0:
|
|
630
686
|
version "0.11.0"
|
631
687
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
|
632
688
|
|
633
|
-
chalk@^1.
|
689
|
+
chalk@^1.1.1, chalk@^1.1.3:
|
634
690
|
version "1.1.3"
|
635
691
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
636
692
|
dependencies:
|
@@ -640,6 +696,14 @@ chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
|
|
640
696
|
strip-ansi "^3.0.0"
|
641
697
|
supports-color "^2.0.0"
|
642
698
|
|
699
|
+
chalk@^2.0.0, chalk@^2.1.0:
|
700
|
+
version "2.1.0"
|
701
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
|
702
|
+
dependencies:
|
703
|
+
ansi-styles "^3.1.0"
|
704
|
+
escape-string-regexp "^1.0.5"
|
705
|
+
supports-color "^4.0.0"
|
706
|
+
|
643
707
|
chokidar@^1.6.1:
|
644
708
|
version "1.6.1"
|
645
709
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
|
@@ -659,11 +723,11 @@ circular-json@^0.3.1:
|
|
659
723
|
version "0.3.1"
|
660
724
|
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
|
661
725
|
|
662
|
-
cli-cursor@^1.0
|
663
|
-
version "1.0
|
664
|
-
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.
|
726
|
+
cli-cursor@^2.1.0:
|
727
|
+
version "2.1.0"
|
728
|
+
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
|
665
729
|
dependencies:
|
666
|
-
restore-cursor "^
|
730
|
+
restore-cursor "^2.0.0"
|
667
731
|
|
668
732
|
cli-width@^2.0.0:
|
669
733
|
version "2.1.0"
|
@@ -677,13 +741,27 @@ code-point-at@^1.0.0:
|
|
677
741
|
version "1.1.0"
|
678
742
|
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
679
743
|
|
744
|
+
color-convert@^1.9.0:
|
745
|
+
version "1.9.0"
|
746
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
|
747
|
+
dependencies:
|
748
|
+
color-name "^1.1.1"
|
749
|
+
|
750
|
+
color-name@^1.1.1:
|
751
|
+
version "1.1.3"
|
752
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
753
|
+
|
680
754
|
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
681
755
|
version "1.0.5"
|
682
756
|
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
|
683
757
|
dependencies:
|
684
758
|
delayed-stream "~1.0.0"
|
685
759
|
|
686
|
-
commander@^2.
|
760
|
+
commander@^2.11.0:
|
761
|
+
version "2.11.0"
|
762
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
|
763
|
+
|
764
|
+
commander@^2.9.0:
|
687
765
|
version "2.9.0"
|
688
766
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
|
689
767
|
dependencies:
|
@@ -693,7 +771,7 @@ concat-map@0.0.1:
|
|
693
771
|
version "0.0.1"
|
694
772
|
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
695
773
|
|
696
|
-
concat-stream@^1.
|
774
|
+
concat-stream@^1.6.0:
|
697
775
|
version "1.6.0"
|
698
776
|
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
|
699
777
|
dependencies:
|
@@ -709,30 +787,40 @@ contains-path@^0.1.0:
|
|
709
787
|
version "0.1.0"
|
710
788
|
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
|
711
789
|
|
712
|
-
convert-source-map@^1.
|
713
|
-
version "1.
|
714
|
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.
|
790
|
+
convert-source-map@^1.5.0:
|
791
|
+
version "1.5.0"
|
792
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
793
|
+
|
794
|
+
core-js@^1.0.0:
|
795
|
+
version "1.2.7"
|
796
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
|
715
797
|
|
716
798
|
core-js@^2.4.0:
|
717
799
|
version "2.4.1"
|
718
800
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
|
719
801
|
|
802
|
+
core-js@^2.5.0:
|
803
|
+
version "2.5.1"
|
804
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
|
805
|
+
|
720
806
|
core-util-is@~1.0.0:
|
721
807
|
version "1.0.2"
|
722
808
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
723
809
|
|
810
|
+
cross-spawn@^5.1.0:
|
811
|
+
version "5.1.0"
|
812
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
|
813
|
+
dependencies:
|
814
|
+
lru-cache "^4.0.1"
|
815
|
+
shebang-command "^1.2.0"
|
816
|
+
which "^1.2.9"
|
817
|
+
|
724
818
|
cryptiles@2.x.x:
|
725
819
|
version "2.0.5"
|
726
820
|
resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
|
727
821
|
dependencies:
|
728
822
|
boom "2.x.x"
|
729
823
|
|
730
|
-
d@^0.1.1, d@~0.1.1:
|
731
|
-
version "0.1.1"
|
732
|
-
resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
|
733
|
-
dependencies:
|
734
|
-
es5-ext "~0.10.2"
|
735
|
-
|
736
824
|
damerau-levenshtein@^1.0.0:
|
737
825
|
version "1.0.3"
|
738
826
|
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.3.tgz#ae4f4ce0b62acae10ff63a01bb08f652f5213af2"
|
@@ -743,18 +831,18 @@ dashdash@^1.12.0:
|
|
743
831
|
dependencies:
|
744
832
|
assert-plus "^1.0.0"
|
745
833
|
|
746
|
-
debug
|
834
|
+
debug@^2.6.8:
|
835
|
+
version "2.6.8"
|
836
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
|
837
|
+
dependencies:
|
838
|
+
ms "2.0.0"
|
839
|
+
|
840
|
+
debug@~2.2.0:
|
747
841
|
version "2.2.0"
|
748
842
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
|
749
843
|
dependencies:
|
750
844
|
ms "0.7.1"
|
751
845
|
|
752
|
-
debug@^2.1.1, debug@^2.2.0:
|
753
|
-
version "2.6.1"
|
754
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351"
|
755
|
-
dependencies:
|
756
|
-
ms "0.7.2"
|
757
|
-
|
758
846
|
deep-extend@~0.4.0:
|
759
847
|
version "0.4.1"
|
760
848
|
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
|
@@ -796,13 +884,20 @@ detect-indent@^4.0.0:
|
|
796
884
|
dependencies:
|
797
885
|
repeating "^2.0.0"
|
798
886
|
|
799
|
-
doctrine@1.5.0
|
887
|
+
doctrine@1.5.0:
|
800
888
|
version "1.5.0"
|
801
889
|
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
|
802
890
|
dependencies:
|
803
891
|
esutils "^2.0.2"
|
804
892
|
isarray "^1.0.0"
|
805
893
|
|
894
|
+
doctrine@^2.0.0:
|
895
|
+
version "2.0.0"
|
896
|
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63"
|
897
|
+
dependencies:
|
898
|
+
esutils "^2.0.2"
|
899
|
+
isarray "^1.0.0"
|
900
|
+
|
806
901
|
ecc-jsbn@~0.1.1:
|
807
902
|
version "0.1.1"
|
808
903
|
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
|
@@ -813,6 +908,18 @@ emoji-regex@^6.1.0:
|
|
813
908
|
version "6.1.0"
|
814
909
|
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.0.tgz#d14ef743a7dfa6eaf436882bd1920a4aed84dd94"
|
815
910
|
|
911
|
+
encoding@^0.1.11:
|
912
|
+
version "0.1.12"
|
913
|
+
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
|
914
|
+
dependencies:
|
915
|
+
iconv-lite "~0.4.13"
|
916
|
+
|
917
|
+
error-ex@^1.2.0:
|
918
|
+
version "1.3.1"
|
919
|
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
|
920
|
+
dependencies:
|
921
|
+
is-arrayish "^0.2.1"
|
922
|
+
|
816
923
|
es-abstract@^1.7.0:
|
817
924
|
version "1.7.0"
|
818
925
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
|
@@ -830,181 +937,141 @@ es-to-primitive@^1.1.1:
|
|
830
937
|
is-date-object "^1.0.1"
|
831
938
|
is-symbol "^1.0.1"
|
832
939
|
|
833
|
-
es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
|
834
|
-
version "0.10.12"
|
835
|
-
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
|
836
|
-
dependencies:
|
837
|
-
es6-iterator "2"
|
838
|
-
es6-symbol "~3.1"
|
839
|
-
|
840
|
-
es6-iterator@2:
|
841
|
-
version "2.0.0"
|
842
|
-
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
|
843
|
-
dependencies:
|
844
|
-
d "^0.1.1"
|
845
|
-
es5-ext "^0.10.7"
|
846
|
-
es6-symbol "3"
|
847
|
-
|
848
|
-
es6-map@^0.1.3:
|
849
|
-
version "0.1.4"
|
850
|
-
resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
|
851
|
-
dependencies:
|
852
|
-
d "~0.1.1"
|
853
|
-
es5-ext "~0.10.11"
|
854
|
-
es6-iterator "2"
|
855
|
-
es6-set "~0.1.3"
|
856
|
-
es6-symbol "~3.1.0"
|
857
|
-
event-emitter "~0.3.4"
|
858
|
-
|
859
|
-
es6-set@~0.1.3:
|
860
|
-
version "0.1.4"
|
861
|
-
resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
|
862
|
-
dependencies:
|
863
|
-
d "~0.1.1"
|
864
|
-
es5-ext "~0.10.11"
|
865
|
-
es6-iterator "2"
|
866
|
-
es6-symbol "3"
|
867
|
-
event-emitter "~0.3.4"
|
868
|
-
|
869
|
-
es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
|
870
|
-
version "3.1.0"
|
871
|
-
resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
|
872
|
-
dependencies:
|
873
|
-
d "~0.1.1"
|
874
|
-
es5-ext "~0.10.11"
|
875
|
-
|
876
|
-
es6-weak-map@^2.0.1:
|
877
|
-
version "2.0.1"
|
878
|
-
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
|
879
|
-
dependencies:
|
880
|
-
d "^0.1.1"
|
881
|
-
es5-ext "^0.10.8"
|
882
|
-
es6-iterator "2"
|
883
|
-
es6-symbol "3"
|
884
|
-
|
885
940
|
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
886
941
|
version "1.0.5"
|
887
942
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
888
943
|
|
889
|
-
|
890
|
-
version "3.
|
891
|
-
resolved "https://registry.yarnpkg.com/
|
944
|
+
eslint-config-airbnb-base@^11.3.0:
|
945
|
+
version "11.3.2"
|
946
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz#8703b11abe3c88ac7ec2b745b7fdf52e00ae680a"
|
892
947
|
dependencies:
|
893
|
-
|
894
|
-
es6-weak-map "^2.0.1"
|
895
|
-
esrecurse "^4.1.0"
|
896
|
-
estraverse "^4.1.1"
|
948
|
+
eslint-restricted-globals "^0.1.1"
|
897
949
|
|
898
|
-
eslint-config-airbnb
|
899
|
-
version "
|
900
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb
|
901
|
-
|
902
|
-
eslint-config-airbnb@^14.1.0:
|
903
|
-
version "14.1.0"
|
904
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-14.1.0.tgz#355d290040bbf8e00bf8b4b19f4b70cbe7c2317f"
|
950
|
+
eslint-config-airbnb@^15.1.0:
|
951
|
+
version "15.1.0"
|
952
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.1.0.tgz#fd432965a906e30139001ba830f58f73aeddae8e"
|
905
953
|
dependencies:
|
906
|
-
eslint-config-airbnb-base "^11.
|
954
|
+
eslint-config-airbnb-base "^11.3.0"
|
907
955
|
|
908
|
-
eslint-import-resolver-node@^0.
|
909
|
-
version "0.
|
910
|
-
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.
|
956
|
+
eslint-import-resolver-node@^0.3.1:
|
957
|
+
version "0.3.1"
|
958
|
+
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc"
|
911
959
|
dependencies:
|
912
|
-
debug "^2.
|
913
|
-
|
914
|
-
resolve "^1.1.6"
|
960
|
+
debug "^2.6.8"
|
961
|
+
resolve "^1.2.0"
|
915
962
|
|
916
|
-
eslint-module-utils@^2.
|
917
|
-
version "2.
|
918
|
-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.
|
963
|
+
eslint-module-utils@^2.1.1:
|
964
|
+
version "2.1.1"
|
965
|
+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
|
919
966
|
dependencies:
|
920
|
-
debug "2.
|
967
|
+
debug "^2.6.8"
|
921
968
|
pkg-dir "^1.0.0"
|
922
969
|
|
923
|
-
eslint-plugin-import@^2.
|
924
|
-
version "2.
|
925
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.
|
970
|
+
eslint-plugin-import@^2.7.0:
|
971
|
+
version "2.7.0"
|
972
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f"
|
926
973
|
dependencies:
|
927
974
|
builtin-modules "^1.1.1"
|
928
975
|
contains-path "^0.1.0"
|
929
|
-
debug "^2.
|
976
|
+
debug "^2.6.8"
|
930
977
|
doctrine "1.5.0"
|
931
|
-
eslint-import-resolver-node "^0.
|
932
|
-
eslint-module-utils "^2.
|
978
|
+
eslint-import-resolver-node "^0.3.1"
|
979
|
+
eslint-module-utils "^2.1.1"
|
933
980
|
has "^1.0.1"
|
934
981
|
lodash.cond "^4.3.0"
|
935
982
|
minimatch "^3.0.3"
|
936
|
-
pkg-up "^
|
983
|
+
read-pkg-up "^2.0.0"
|
937
984
|
|
938
|
-
eslint-plugin-jsx-a11y@^
|
939
|
-
version "
|
940
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-
|
985
|
+
eslint-plugin-jsx-a11y@^5.1.1:
|
986
|
+
version "5.1.1"
|
987
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1"
|
941
988
|
dependencies:
|
942
|
-
aria-query "^0.
|
989
|
+
aria-query "^0.7.0"
|
990
|
+
array-includes "^3.0.3"
|
943
991
|
ast-types-flow "0.0.7"
|
992
|
+
axobject-query "^0.1.0"
|
944
993
|
damerau-levenshtein "^1.0.0"
|
945
994
|
emoji-regex "^6.1.0"
|
946
|
-
jsx-ast-utils "^1.
|
947
|
-
object-assign "^4.0.1"
|
995
|
+
jsx-ast-utils "^1.4.0"
|
948
996
|
|
949
|
-
eslint-plugin-react@^
|
950
|
-
version "
|
951
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-
|
997
|
+
eslint-plugin-react@^7.3.0:
|
998
|
+
version "7.3.0"
|
999
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.3.0.tgz#ca9368da36f733fbdc05718ae4e91f778f38e344"
|
952
1000
|
dependencies:
|
953
|
-
|
954
|
-
doctrine "^1.2.2"
|
1001
|
+
doctrine "^2.0.0"
|
955
1002
|
has "^1.0.1"
|
956
|
-
jsx-ast-utils "^
|
957
|
-
|
1003
|
+
jsx-ast-utils "^2.0.0"
|
1004
|
+
prop-types "^15.5.10"
|
958
1005
|
|
959
|
-
eslint@^
|
960
|
-
version "
|
961
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-
|
1006
|
+
eslint-restricted-globals@^0.1.1:
|
1007
|
+
version "0.1.1"
|
1008
|
+
resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
|
1009
|
+
|
1010
|
+
eslint-scope@^3.7.1:
|
1011
|
+
version "3.7.1"
|
1012
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
|
962
1013
|
dependencies:
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
1014
|
+
esrecurse "^4.1.0"
|
1015
|
+
estraverse "^4.1.1"
|
1016
|
+
|
1017
|
+
eslint@^4.6.1:
|
1018
|
+
version "4.6.1"
|
1019
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.6.1.tgz#ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950"
|
1020
|
+
dependencies:
|
1021
|
+
ajv "^5.2.0"
|
1022
|
+
babel-code-frame "^6.22.0"
|
1023
|
+
chalk "^2.1.0"
|
1024
|
+
concat-stream "^1.6.0"
|
1025
|
+
cross-spawn "^5.1.0"
|
1026
|
+
debug "^2.6.8"
|
1027
|
+
doctrine "^2.0.0"
|
1028
|
+
eslint-scope "^3.7.1"
|
1029
|
+
espree "^3.5.0"
|
1030
|
+
esquery "^1.0.0"
|
970
1031
|
estraverse "^4.2.0"
|
971
1032
|
esutils "^2.0.2"
|
972
1033
|
file-entry-cache "^2.0.0"
|
973
|
-
|
974
|
-
|
975
|
-
|
1034
|
+
functional-red-black-tree "^1.0.1"
|
1035
|
+
glob "^7.1.2"
|
1036
|
+
globals "^9.17.0"
|
1037
|
+
ignore "^3.3.3"
|
976
1038
|
imurmurhash "^0.1.4"
|
977
|
-
inquirer "^0.
|
978
|
-
is-my-json-valid "^2.10.0"
|
1039
|
+
inquirer "^3.0.6"
|
979
1040
|
is-resolvable "^1.0.0"
|
980
|
-
js-yaml "^3.
|
981
|
-
json-stable-stringify "^1.0.
|
1041
|
+
js-yaml "^3.9.1"
|
1042
|
+
json-stable-stringify "^1.0.1"
|
982
1043
|
levn "^0.3.0"
|
983
|
-
lodash "^4.
|
984
|
-
|
1044
|
+
lodash "^4.17.4"
|
1045
|
+
minimatch "^3.0.2"
|
1046
|
+
mkdirp "^0.5.1"
|
985
1047
|
natural-compare "^1.4.0"
|
986
1048
|
optionator "^0.8.2"
|
987
|
-
path-is-inside "^1.0.
|
988
|
-
pluralize "^
|
989
|
-
progress "^
|
990
|
-
require-uncached "^1.0.
|
991
|
-
|
992
|
-
strip-
|
1049
|
+
path-is-inside "^1.0.2"
|
1050
|
+
pluralize "^4.0.0"
|
1051
|
+
progress "^2.0.0"
|
1052
|
+
require-uncached "^1.0.3"
|
1053
|
+
semver "^5.3.0"
|
1054
|
+
strip-ansi "^4.0.0"
|
993
1055
|
strip-json-comments "~2.0.1"
|
994
|
-
table "^
|
1056
|
+
table "^4.0.1"
|
995
1057
|
text-table "~0.2.0"
|
996
|
-
user-home "^2.0.0"
|
997
1058
|
|
998
|
-
espree@^3.
|
999
|
-
version "3.
|
1000
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-3.
|
1059
|
+
espree@^3.5.0:
|
1060
|
+
version "3.5.0"
|
1061
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d"
|
1001
1062
|
dependencies:
|
1002
|
-
acorn "
|
1063
|
+
acorn "^5.1.1"
|
1003
1064
|
acorn-jsx "^3.0.0"
|
1004
1065
|
|
1005
|
-
esprima@^
|
1006
|
-
version "
|
1007
|
-
resolved "https://registry.yarnpkg.com/esprima/-/esprima-
|
1066
|
+
esprima@^4.0.0:
|
1067
|
+
version "4.0.0"
|
1068
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
|
1069
|
+
|
1070
|
+
esquery@^1.0.0:
|
1071
|
+
version "1.0.0"
|
1072
|
+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
|
1073
|
+
dependencies:
|
1074
|
+
estraverse "^4.0.0"
|
1008
1075
|
|
1009
1076
|
esrecurse@^4.1.0:
|
1010
1077
|
version "4.1.0"
|
@@ -1013,7 +1080,7 @@ esrecurse@^4.1.0:
|
|
1013
1080
|
estraverse "~4.1.0"
|
1014
1081
|
object-assign "^4.0.1"
|
1015
1082
|
|
1016
|
-
estraverse@^4.1.1, estraverse@^4.2.0:
|
1083
|
+
estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0:
|
1017
1084
|
version "4.2.0"
|
1018
1085
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
|
1019
1086
|
|
@@ -1025,17 +1092,6 @@ esutils@^2.0.2:
|
|
1025
1092
|
version "2.0.2"
|
1026
1093
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
1027
1094
|
|
1028
|
-
event-emitter@~0.3.4:
|
1029
|
-
version "0.3.4"
|
1030
|
-
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
|
1031
|
-
dependencies:
|
1032
|
-
d "~0.1.1"
|
1033
|
-
es5-ext "~0.10.7"
|
1034
|
-
|
1035
|
-
exit-hook@^1.0.0:
|
1036
|
-
version "1.1.1"
|
1037
|
-
resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
|
1038
|
-
|
1039
1095
|
expand-brackets@^0.1.4:
|
1040
1096
|
version "0.1.5"
|
1041
1097
|
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
|
@@ -1052,6 +1108,14 @@ extend@~3.0.0:
|
|
1052
1108
|
version "3.0.0"
|
1053
1109
|
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
|
1054
1110
|
|
1111
|
+
external-editor@^2.0.4:
|
1112
|
+
version "2.0.4"
|
1113
|
+
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"
|
1114
|
+
dependencies:
|
1115
|
+
iconv-lite "^0.4.17"
|
1116
|
+
jschardet "^1.4.2"
|
1117
|
+
tmp "^0.0.31"
|
1118
|
+
|
1055
1119
|
extglob@^0.3.1:
|
1056
1120
|
version "0.3.2"
|
1057
1121
|
resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
|
@@ -1062,16 +1126,31 @@ extsprintf@1.0.2:
|
|
1062
1126
|
version "1.0.2"
|
1063
1127
|
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
|
1064
1128
|
|
1129
|
+
fast-deep-equal@^1.0.0:
|
1130
|
+
version "1.0.0"
|
1131
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
|
1132
|
+
|
1065
1133
|
fast-levenshtein@~2.0.4:
|
1066
1134
|
version "2.0.6"
|
1067
1135
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
1068
1136
|
|
1069
|
-
|
1070
|
-
version "
|
1071
|
-
resolved "https://registry.yarnpkg.com/
|
1137
|
+
fbjs@^0.8.9:
|
1138
|
+
version "0.8.15"
|
1139
|
+
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.15.tgz#4f0695fdfcc16c37c0b07facec8cb4c4091685b9"
|
1072
1140
|
dependencies:
|
1073
|
-
|
1141
|
+
core-js "^1.0.0"
|
1142
|
+
isomorphic-fetch "^2.1.1"
|
1143
|
+
loose-envify "^1.0.0"
|
1074
1144
|
object-assign "^4.1.0"
|
1145
|
+
promise "^7.1.1"
|
1146
|
+
setimmediate "^1.0.5"
|
1147
|
+
ua-parser-js "^0.7.9"
|
1148
|
+
|
1149
|
+
figures@^2.0.0:
|
1150
|
+
version "2.0.0"
|
1151
|
+
resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
|
1152
|
+
dependencies:
|
1153
|
+
escape-string-regexp "^1.0.5"
|
1075
1154
|
|
1076
1155
|
file-entry-cache@^2.0.0:
|
1077
1156
|
version "2.0.0"
|
@@ -1101,6 +1180,12 @@ find-up@^1.0.0:
|
|
1101
1180
|
path-exists "^2.0.0"
|
1102
1181
|
pinkie-promise "^2.0.0"
|
1103
1182
|
|
1183
|
+
find-up@^2.0.0:
|
1184
|
+
version "2.1.0"
|
1185
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
1186
|
+
dependencies:
|
1187
|
+
locate-path "^2.0.0"
|
1188
|
+
|
1104
1189
|
flat-cache@^1.2.1:
|
1105
1190
|
version "1.2.2"
|
1106
1191
|
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
|
@@ -1172,6 +1257,10 @@ function-bind@^1.0.2, function-bind@^1.1.0:
|
|
1172
1257
|
version "1.1.0"
|
1173
1258
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
1174
1259
|
|
1260
|
+
functional-red-black-tree@^1.0.1:
|
1261
|
+
version "1.0.1"
|
1262
|
+
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
1263
|
+
|
1175
1264
|
gauge@~2.7.1:
|
1176
1265
|
version "2.7.3"
|
1177
1266
|
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09"
|
@@ -1214,7 +1303,7 @@ glob-parent@^2.0.0:
|
|
1214
1303
|
dependencies:
|
1215
1304
|
is-glob "^2.0.0"
|
1216
1305
|
|
1217
|
-
glob@^7.0.
|
1306
|
+
glob@^7.0.3, glob@^7.0.5:
|
1218
1307
|
version "7.1.1"
|
1219
1308
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
1220
1309
|
dependencies:
|
@@ -1225,9 +1314,20 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
|
|
1225
1314
|
once "^1.3.0"
|
1226
1315
|
path-is-absolute "^1.0.0"
|
1227
1316
|
|
1228
|
-
|
1229
|
-
version "
|
1230
|
-
resolved "https://registry.yarnpkg.com/
|
1317
|
+
glob@^7.1.2:
|
1318
|
+
version "7.1.2"
|
1319
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
1320
|
+
dependencies:
|
1321
|
+
fs.realpath "^1.0.0"
|
1322
|
+
inflight "^1.0.4"
|
1323
|
+
inherits "2"
|
1324
|
+
minimatch "^3.0.4"
|
1325
|
+
once "^1.3.0"
|
1326
|
+
path-is-absolute "^1.0.0"
|
1327
|
+
|
1328
|
+
globals@^9.17.0, globals@^9.18.0:
|
1329
|
+
version "9.18.0"
|
1330
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
1231
1331
|
|
1232
1332
|
globby@^5.0.0:
|
1233
1333
|
version "5.0.0"
|
@@ -1263,6 +1363,10 @@ has-ansi@^2.0.0:
|
|
1263
1363
|
dependencies:
|
1264
1364
|
ansi-regex "^2.0.0"
|
1265
1365
|
|
1366
|
+
has-flag@^2.0.0:
|
1367
|
+
version "2.0.0"
|
1368
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
|
1369
|
+
|
1266
1370
|
has-unicode@^2.0.0:
|
1267
1371
|
version "2.0.1"
|
1268
1372
|
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
@@ -1293,6 +1397,10 @@ home-or-tmp@^2.0.0:
|
|
1293
1397
|
os-homedir "^1.0.0"
|
1294
1398
|
os-tmpdir "^1.0.1"
|
1295
1399
|
|
1400
|
+
hosted-git-info@^2.1.4:
|
1401
|
+
version "2.5.0"
|
1402
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
|
1403
|
+
|
1296
1404
|
http-signature@~1.1.0:
|
1297
1405
|
version "1.1.1"
|
1298
1406
|
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
|
@@ -1301,9 +1409,13 @@ http-signature@~1.1.0:
|
|
1301
1409
|
jsprim "^1.2.2"
|
1302
1410
|
sshpk "^1.7.0"
|
1303
1411
|
|
1304
|
-
|
1305
|
-
version "
|
1306
|
-
resolved "https://registry.yarnpkg.com/
|
1412
|
+
iconv-lite@^0.4.17, iconv-lite@~0.4.13:
|
1413
|
+
version "0.4.19"
|
1414
|
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
|
1415
|
+
|
1416
|
+
ignore@^3.3.3:
|
1417
|
+
version "3.3.5"
|
1418
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6"
|
1307
1419
|
|
1308
1420
|
imurmurhash@^0.1.4:
|
1309
1421
|
version "0.1.4"
|
@@ -1324,34 +1436,35 @@ ini@~1.3.0:
|
|
1324
1436
|
version "1.3.4"
|
1325
1437
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
|
1326
1438
|
|
1327
|
-
inquirer@^0.
|
1328
|
-
version "
|
1329
|
-
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-
|
1439
|
+
inquirer@^3.0.6:
|
1440
|
+
version "3.2.3"
|
1441
|
+
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095"
|
1330
1442
|
dependencies:
|
1331
|
-
ansi-escapes "^
|
1332
|
-
|
1333
|
-
|
1334
|
-
cli-cursor "^1.0.1"
|
1443
|
+
ansi-escapes "^2.0.0"
|
1444
|
+
chalk "^2.0.0"
|
1445
|
+
cli-cursor "^2.1.0"
|
1335
1446
|
cli-width "^2.0.0"
|
1336
|
-
|
1447
|
+
external-editor "^2.0.4"
|
1448
|
+
figures "^2.0.0"
|
1337
1449
|
lodash "^4.3.0"
|
1338
|
-
|
1339
|
-
run-async "^
|
1340
|
-
rx-lite "^
|
1341
|
-
|
1342
|
-
|
1450
|
+
mute-stream "0.0.7"
|
1451
|
+
run-async "^2.2.0"
|
1452
|
+
rx-lite "^4.0.8"
|
1453
|
+
rx-lite-aggregates "^4.0.8"
|
1454
|
+
string-width "^2.1.0"
|
1455
|
+
strip-ansi "^4.0.0"
|
1343
1456
|
through "^2.3.6"
|
1344
1457
|
|
1345
|
-
|
1346
|
-
version "1.0.1"
|
1347
|
-
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
|
1348
|
-
|
1349
|
-
invariant@^2.2.0:
|
1458
|
+
invariant@^2.2.2:
|
1350
1459
|
version "2.2.2"
|
1351
1460
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
|
1352
1461
|
dependencies:
|
1353
1462
|
loose-envify "^1.0.0"
|
1354
1463
|
|
1464
|
+
is-arrayish@^0.2.1:
|
1465
|
+
version "0.2.1"
|
1466
|
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
1467
|
+
|
1355
1468
|
is-binary-path@^1.0.0:
|
1356
1469
|
version "1.0.1"
|
1357
1470
|
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
@@ -1362,6 +1475,12 @@ is-buffer@^1.0.2:
|
|
1362
1475
|
version "1.1.4"
|
1363
1476
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
|
1364
1477
|
|
1478
|
+
is-builtin-module@^1.0.0:
|
1479
|
+
version "1.0.0"
|
1480
|
+
resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
|
1481
|
+
dependencies:
|
1482
|
+
builtin-modules "^1.0.0"
|
1483
|
+
|
1365
1484
|
is-callable@^1.1.1, is-callable@^1.1.3:
|
1366
1485
|
version "1.1.3"
|
1367
1486
|
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
@@ -1410,7 +1529,7 @@ is-glob@^2.0.0, is-glob@^2.0.1:
|
|
1410
1529
|
dependencies:
|
1411
1530
|
is-extglob "^1.0.0"
|
1412
1531
|
|
1413
|
-
is-my-json-valid@^2.
|
1532
|
+
is-my-json-valid@^2.12.4:
|
1414
1533
|
version "2.15.0"
|
1415
1534
|
resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
|
1416
1535
|
dependencies:
|
@@ -1449,6 +1568,10 @@ is-primitive@^2.0.0:
|
|
1449
1568
|
version "2.0.0"
|
1450
1569
|
resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
|
1451
1570
|
|
1571
|
+
is-promise@^2.1.0:
|
1572
|
+
version "2.1.0"
|
1573
|
+
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
1574
|
+
|
1452
1575
|
is-property@^1.0.0:
|
1453
1576
|
version "1.0.2"
|
1454
1577
|
resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
|
@@ -1465,6 +1588,10 @@ is-resolvable@^1.0.0:
|
|
1465
1588
|
dependencies:
|
1466
1589
|
tryit "^1.0.1"
|
1467
1590
|
|
1591
|
+
is-stream@^1.0.1:
|
1592
|
+
version "1.1.0"
|
1593
|
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
1594
|
+
|
1468
1595
|
is-symbol@^1.0.1:
|
1469
1596
|
version "1.0.1"
|
1470
1597
|
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
|
@@ -1477,12 +1604,23 @@ isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
|
1477
1604
|
version "1.0.0"
|
1478
1605
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
1479
1606
|
|
1607
|
+
isexe@^2.0.0:
|
1608
|
+
version "2.0.0"
|
1609
|
+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
1610
|
+
|
1480
1611
|
isobject@^2.0.0:
|
1481
1612
|
version "2.1.0"
|
1482
1613
|
resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
|
1483
1614
|
dependencies:
|
1484
1615
|
isarray "1.0.0"
|
1485
1616
|
|
1617
|
+
isomorphic-fetch@^2.1.1:
|
1618
|
+
version "2.2.1"
|
1619
|
+
resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
|
1620
|
+
dependencies:
|
1621
|
+
node-fetch "^1.0.1"
|
1622
|
+
whatwg-fetch ">=0.10.0"
|
1623
|
+
|
1486
1624
|
isstream@~0.1.2:
|
1487
1625
|
version "0.1.2"
|
1488
1626
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
@@ -1497,17 +1635,25 @@ js-tokens@^3.0.0:
|
|
1497
1635
|
version "3.0.1"
|
1498
1636
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
|
1499
1637
|
|
1500
|
-
js-
|
1501
|
-
version "3.
|
1502
|
-
resolved "https://registry.yarnpkg.com/js-
|
1638
|
+
js-tokens@^3.0.2:
|
1639
|
+
version "3.0.2"
|
1640
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
1641
|
+
|
1642
|
+
js-yaml@^3.9.1:
|
1643
|
+
version "3.10.0"
|
1644
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
|
1503
1645
|
dependencies:
|
1504
1646
|
argparse "^1.0.7"
|
1505
|
-
esprima "^
|
1647
|
+
esprima "^4.0.0"
|
1506
1648
|
|
1507
1649
|
jsbn@~0.1.0:
|
1508
1650
|
version "0.1.1"
|
1509
1651
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
1510
1652
|
|
1653
|
+
jschardet@^1.4.2:
|
1654
|
+
version "1.5.1"
|
1655
|
+
resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9"
|
1656
|
+
|
1511
1657
|
jsesc@^1.3.0:
|
1512
1658
|
version "1.3.0"
|
1513
1659
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
|
@@ -1516,11 +1662,15 @@ jsesc@~0.5.0:
|
|
1516
1662
|
version "0.5.0"
|
1517
1663
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
1518
1664
|
|
1665
|
+
json-schema-traverse@^0.3.0:
|
1666
|
+
version "0.3.1"
|
1667
|
+
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
|
1668
|
+
|
1519
1669
|
json-schema@0.2.3:
|
1520
1670
|
version "0.2.3"
|
1521
1671
|
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
1522
1672
|
|
1523
|
-
json-stable-stringify@^1.0.
|
1673
|
+
json-stable-stringify@^1.0.1:
|
1524
1674
|
version "1.0.1"
|
1525
1675
|
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
1526
1676
|
dependencies:
|
@@ -1530,7 +1680,7 @@ json-stringify-safe@~5.0.1:
|
|
1530
1680
|
version "5.0.1"
|
1531
1681
|
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
1532
1682
|
|
1533
|
-
json5@^0.5.
|
1683
|
+
json5@^0.5.1:
|
1534
1684
|
version "0.5.1"
|
1535
1685
|
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
|
1536
1686
|
|
@@ -1550,11 +1700,15 @@ jsprim@^1.2.2:
|
|
1550
1700
|
json-schema "0.2.3"
|
1551
1701
|
verror "1.3.6"
|
1552
1702
|
|
1553
|
-
jsx-ast-utils@^1.
|
1554
|
-
version "1.4.
|
1555
|
-
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.
|
1703
|
+
jsx-ast-utils@^1.4.0:
|
1704
|
+
version "1.4.1"
|
1705
|
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
|
1706
|
+
|
1707
|
+
jsx-ast-utils@^2.0.0:
|
1708
|
+
version "2.0.1"
|
1709
|
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f"
|
1556
1710
|
dependencies:
|
1557
|
-
|
1711
|
+
array-includes "^3.0.3"
|
1558
1712
|
|
1559
1713
|
kind-of@^3.0.2:
|
1560
1714
|
version "3.1.0"
|
@@ -1569,20 +1723,43 @@ levn@^0.3.0, levn@~0.3.0:
|
|
1569
1723
|
prelude-ls "~1.1.2"
|
1570
1724
|
type-check "~0.3.2"
|
1571
1725
|
|
1726
|
+
load-json-file@^2.0.0:
|
1727
|
+
version "2.0.0"
|
1728
|
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
|
1729
|
+
dependencies:
|
1730
|
+
graceful-fs "^4.1.2"
|
1731
|
+
parse-json "^2.2.0"
|
1732
|
+
pify "^2.0.0"
|
1733
|
+
strip-bom "^3.0.0"
|
1734
|
+
|
1735
|
+
locate-path@^2.0.0:
|
1736
|
+
version "2.0.0"
|
1737
|
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
1738
|
+
dependencies:
|
1739
|
+
p-locate "^2.0.0"
|
1740
|
+
path-exists "^3.0.0"
|
1741
|
+
|
1572
1742
|
lodash.cond@^4.3.0:
|
1573
1743
|
version "4.5.2"
|
1574
1744
|
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
|
1575
1745
|
|
1576
|
-
lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0:
|
1746
|
+
lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0:
|
1577
1747
|
version "4.17.4"
|
1578
1748
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
1579
1749
|
|
1580
|
-
loose-envify@^1.0.0:
|
1750
|
+
loose-envify@^1.0.0, loose-envify@^1.3.1:
|
1581
1751
|
version "1.3.1"
|
1582
1752
|
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
|
1583
1753
|
dependencies:
|
1584
1754
|
js-tokens "^3.0.0"
|
1585
1755
|
|
1756
|
+
lru-cache@^4.0.1:
|
1757
|
+
version "4.1.1"
|
1758
|
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
|
1759
|
+
dependencies:
|
1760
|
+
pseudomap "^1.0.2"
|
1761
|
+
yallist "^2.1.2"
|
1762
|
+
|
1586
1763
|
micromatch@^2.1.5:
|
1587
1764
|
version "2.3.11"
|
1588
1765
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
|
@@ -1611,12 +1788,22 @@ mime-types@^2.1.12, mime-types@~2.1.7:
|
|
1611
1788
|
dependencies:
|
1612
1789
|
mime-db "~1.26.0"
|
1613
1790
|
|
1791
|
+
mimic-fn@^1.0.0:
|
1792
|
+
version "1.1.0"
|
1793
|
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
|
1794
|
+
|
1614
1795
|
minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
|
1615
1796
|
version "3.0.3"
|
1616
1797
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
1617
1798
|
dependencies:
|
1618
1799
|
brace-expansion "^1.0.0"
|
1619
1800
|
|
1801
|
+
minimatch@^3.0.4:
|
1802
|
+
version "3.0.4"
|
1803
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
1804
|
+
dependencies:
|
1805
|
+
brace-expansion "^1.1.7"
|
1806
|
+
|
1620
1807
|
minimist@0.0.8:
|
1621
1808
|
version "0.0.8"
|
1622
1809
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
@@ -1625,7 +1812,7 @@ minimist@^1.2.0:
|
|
1625
1812
|
version "1.2.0"
|
1626
1813
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
1627
1814
|
|
1628
|
-
"mkdirp@>=0.5 0", mkdirp@^0.5.
|
1815
|
+
"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1:
|
1629
1816
|
version "0.5.1"
|
1630
1817
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
1631
1818
|
dependencies:
|
@@ -1635,13 +1822,13 @@ ms@0.7.1:
|
|
1635
1822
|
version "0.7.1"
|
1636
1823
|
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
|
1637
1824
|
|
1638
|
-
ms@0.
|
1639
|
-
version "0.
|
1640
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-0.
|
1825
|
+
ms@2.0.0:
|
1826
|
+
version "2.0.0"
|
1827
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
1641
1828
|
|
1642
|
-
mute-stream@0.0.
|
1643
|
-
version "0.0.
|
1644
|
-
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.
|
1829
|
+
mute-stream@0.0.7:
|
1830
|
+
version "0.0.7"
|
1831
|
+
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
1645
1832
|
|
1646
1833
|
nan@^2.3.0:
|
1647
1834
|
version "2.5.1"
|
@@ -1651,6 +1838,13 @@ natural-compare@^1.4.0:
|
|
1651
1838
|
version "1.4.0"
|
1652
1839
|
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
1653
1840
|
|
1841
|
+
node-fetch@^1.0.1:
|
1842
|
+
version "1.7.3"
|
1843
|
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
|
1844
|
+
dependencies:
|
1845
|
+
encoding "^0.1.11"
|
1846
|
+
is-stream "^1.0.1"
|
1847
|
+
|
1654
1848
|
node-pre-gyp@^0.6.29:
|
1655
1849
|
version "0.6.33"
|
1656
1850
|
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9"
|
@@ -1671,6 +1865,15 @@ nopt@~3.0.6:
|
|
1671
1865
|
dependencies:
|
1672
1866
|
abbrev "1"
|
1673
1867
|
|
1868
|
+
normalize-package-data@^2.3.2:
|
1869
|
+
version "2.4.0"
|
1870
|
+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
|
1871
|
+
dependencies:
|
1872
|
+
hosted-git-info "^2.1.4"
|
1873
|
+
is-builtin-module "^1.0.0"
|
1874
|
+
semver "2 || 3 || 4 || 5"
|
1875
|
+
validate-npm-package-license "^3.0.1"
|
1876
|
+
|
1674
1877
|
normalize-path@^2.0.1:
|
1675
1878
|
version "2.0.1"
|
1676
1879
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
|
@@ -1696,18 +1899,10 @@ object-assign@^4.0.1, object-assign@^4.1.0:
|
|
1696
1899
|
version "4.1.1"
|
1697
1900
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
1698
1901
|
|
1699
|
-
object-keys@^1.0.
|
1902
|
+
object-keys@^1.0.8:
|
1700
1903
|
version "1.0.11"
|
1701
1904
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
1702
1905
|
|
1703
|
-
object.assign@^4.0.4:
|
1704
|
-
version "4.0.4"
|
1705
|
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
|
1706
|
-
dependencies:
|
1707
|
-
define-properties "^1.1.2"
|
1708
|
-
function-bind "^1.1.0"
|
1709
|
-
object-keys "^1.0.10"
|
1710
|
-
|
1711
1906
|
object.omit@^2.0.0:
|
1712
1907
|
version "2.0.1"
|
1713
1908
|
resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
|
@@ -1727,9 +1922,11 @@ once@~1.3.3:
|
|
1727
1922
|
dependencies:
|
1728
1923
|
wrappy "1"
|
1729
1924
|
|
1730
|
-
onetime@^
|
1731
|
-
version "
|
1732
|
-
resolved "https://registry.yarnpkg.com/onetime/-/onetime-
|
1925
|
+
onetime@^2.0.0:
|
1926
|
+
version "2.0.1"
|
1927
|
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
|
1928
|
+
dependencies:
|
1929
|
+
mimic-fn "^1.0.0"
|
1733
1930
|
|
1734
1931
|
optionator@^0.8.2:
|
1735
1932
|
version "0.8.2"
|
@@ -1746,11 +1943,11 @@ os-homedir@^1.0.0:
|
|
1746
1943
|
version "1.0.2"
|
1747
1944
|
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
1748
1945
|
|
1749
|
-
os-tmpdir@^1.0.1:
|
1946
|
+
os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
|
1750
1947
|
version "1.0.2"
|
1751
1948
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
1752
1949
|
|
1753
|
-
output-file-sync@^1.1.
|
1950
|
+
output-file-sync@^1.1.2:
|
1754
1951
|
version "1.1.2"
|
1755
1952
|
resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
|
1756
1953
|
dependencies:
|
@@ -1758,6 +1955,16 @@ output-file-sync@^1.1.0:
|
|
1758
1955
|
mkdirp "^0.5.1"
|
1759
1956
|
object-assign "^4.1.0"
|
1760
1957
|
|
1958
|
+
p-limit@^1.1.0:
|
1959
|
+
version "1.1.0"
|
1960
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
|
1961
|
+
|
1962
|
+
p-locate@^2.0.0:
|
1963
|
+
version "2.0.0"
|
1964
|
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
1965
|
+
dependencies:
|
1966
|
+
p-limit "^1.1.0"
|
1967
|
+
|
1761
1968
|
parse-glob@^3.0.4:
|
1762
1969
|
version "3.0.4"
|
1763
1970
|
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
|
@@ -1767,17 +1974,27 @@ parse-glob@^3.0.4:
|
|
1767
1974
|
is-extglob "^1.0.0"
|
1768
1975
|
is-glob "^2.0.0"
|
1769
1976
|
|
1977
|
+
parse-json@^2.2.0:
|
1978
|
+
version "2.2.0"
|
1979
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
|
1980
|
+
dependencies:
|
1981
|
+
error-ex "^1.2.0"
|
1982
|
+
|
1770
1983
|
path-exists@^2.0.0:
|
1771
1984
|
version "2.1.0"
|
1772
1985
|
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
|
1773
1986
|
dependencies:
|
1774
1987
|
pinkie-promise "^2.0.0"
|
1775
1988
|
|
1776
|
-
path-
|
1989
|
+
path-exists@^3.0.0:
|
1990
|
+
version "3.0.0"
|
1991
|
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
1992
|
+
|
1993
|
+
path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
|
1777
1994
|
version "1.0.1"
|
1778
1995
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
1779
1996
|
|
1780
|
-
path-is-inside@^1.0.1:
|
1997
|
+
path-is-inside@^1.0.1, path-is-inside@^1.0.2:
|
1781
1998
|
version "1.0.2"
|
1782
1999
|
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
1783
2000
|
|
@@ -1785,6 +2002,12 @@ path-parse@^1.0.5:
|
|
1785
2002
|
version "1.0.5"
|
1786
2003
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
|
1787
2004
|
|
2005
|
+
path-type@^2.0.0:
|
2006
|
+
version "2.0.0"
|
2007
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
|
2008
|
+
dependencies:
|
2009
|
+
pify "^2.0.0"
|
2010
|
+
|
1788
2011
|
pify@^2.0.0:
|
1789
2012
|
version "2.3.0"
|
1790
2013
|
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
@@ -1805,15 +2028,9 @@ pkg-dir@^1.0.0:
|
|
1805
2028
|
dependencies:
|
1806
2029
|
find-up "^1.0.0"
|
1807
2030
|
|
1808
|
-
|
1809
|
-
version "
|
1810
|
-
resolved "https://registry.yarnpkg.com/
|
1811
|
-
dependencies:
|
1812
|
-
find-up "^1.0.0"
|
1813
|
-
|
1814
|
-
pluralize@^1.2.1:
|
1815
|
-
version "1.2.1"
|
1816
|
-
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
|
2031
|
+
pluralize@^4.0.0:
|
2032
|
+
version "4.0.0"
|
2033
|
+
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762"
|
1817
2034
|
|
1818
2035
|
prelude-ls@~1.1.2:
|
1819
2036
|
version "1.1.2"
|
@@ -1823,7 +2040,7 @@ preserve@^0.2.0:
|
|
1823
2040
|
version "0.2.0"
|
1824
2041
|
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
1825
2042
|
|
1826
|
-
private@^0.1.6:
|
2043
|
+
private@^0.1.6, private@^0.1.7:
|
1827
2044
|
version "0.1.7"
|
1828
2045
|
resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
|
1829
2046
|
|
@@ -1831,9 +2048,26 @@ process-nextick-args@~1.0.6:
|
|
1831
2048
|
version "1.0.7"
|
1832
2049
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
1833
2050
|
|
1834
|
-
progress@^
|
1835
|
-
version "
|
1836
|
-
resolved "https://registry.yarnpkg.com/progress/-/progress-
|
2051
|
+
progress@^2.0.0:
|
2052
|
+
version "2.0.0"
|
2053
|
+
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
|
2054
|
+
|
2055
|
+
promise@^7.1.1:
|
2056
|
+
version "7.3.1"
|
2057
|
+
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
|
2058
|
+
dependencies:
|
2059
|
+
asap "~2.0.3"
|
2060
|
+
|
2061
|
+
prop-types@^15.5.10:
|
2062
|
+
version "15.5.10"
|
2063
|
+
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
|
2064
|
+
dependencies:
|
2065
|
+
fbjs "^0.8.9"
|
2066
|
+
loose-envify "^1.3.1"
|
2067
|
+
|
2068
|
+
pseudomap@^1.0.2:
|
2069
|
+
version "1.0.2"
|
2070
|
+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
1837
2071
|
|
1838
2072
|
punycode@^1.4.1:
|
1839
2073
|
version "1.4.1"
|
@@ -1859,6 +2093,21 @@ rc@~1.1.6:
|
|
1859
2093
|
minimist "^1.2.0"
|
1860
2094
|
strip-json-comments "~2.0.1"
|
1861
2095
|
|
2096
|
+
read-pkg-up@^2.0.0:
|
2097
|
+
version "2.0.0"
|
2098
|
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
|
2099
|
+
dependencies:
|
2100
|
+
find-up "^2.0.0"
|
2101
|
+
read-pkg "^2.0.0"
|
2102
|
+
|
2103
|
+
read-pkg@^2.0.0:
|
2104
|
+
version "2.0.0"
|
2105
|
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
|
2106
|
+
dependencies:
|
2107
|
+
load-json-file "^2.0.0"
|
2108
|
+
normalize-package-data "^2.3.2"
|
2109
|
+
path-type "^2.0.0"
|
2110
|
+
|
1862
2111
|
"readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.2.2:
|
1863
2112
|
version "2.2.3"
|
1864
2113
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729"
|
@@ -1892,20 +2141,6 @@ readdirp@^2.0.0:
|
|
1892
2141
|
readable-stream "^2.0.2"
|
1893
2142
|
set-immediate-shim "^1.0.1"
|
1894
2143
|
|
1895
|
-
readline2@^1.0.1:
|
1896
|
-
version "1.0.1"
|
1897
|
-
resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
|
1898
|
-
dependencies:
|
1899
|
-
code-point-at "^1.0.0"
|
1900
|
-
is-fullwidth-code-point "^1.0.0"
|
1901
|
-
mute-stream "0.0.5"
|
1902
|
-
|
1903
|
-
rechoir@^0.6.2:
|
1904
|
-
version "0.6.2"
|
1905
|
-
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
1906
|
-
dependencies:
|
1907
|
-
resolve "^1.1.6"
|
1908
|
-
|
1909
2144
|
regenerate@^1.2.1:
|
1910
2145
|
version "1.3.2"
|
1911
2146
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
|
@@ -1914,9 +2149,17 @@ regenerator-runtime@^0.10.0:
|
|
1914
2149
|
version "0.10.3"
|
1915
2150
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e"
|
1916
2151
|
|
1917
|
-
regenerator-
|
1918
|
-
version "0.
|
1919
|
-
resolved "https://registry.yarnpkg.com/regenerator-
|
2152
|
+
regenerator-runtime@^0.10.5:
|
2153
|
+
version "0.10.5"
|
2154
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
|
2155
|
+
|
2156
|
+
regenerator-runtime@^0.11.0:
|
2157
|
+
version "0.11.0"
|
2158
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
|
2159
|
+
|
2160
|
+
regenerator-transform@^0.10.0:
|
2161
|
+
version "0.10.1"
|
2162
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
|
1920
2163
|
dependencies:
|
1921
2164
|
babel-runtime "^6.18.0"
|
1922
2165
|
babel-types "^6.19.0"
|
@@ -1986,7 +2229,7 @@ request@^2.79.0:
|
|
1986
2229
|
tunnel-agent "~0.4.1"
|
1987
2230
|
uuid "^3.0.0"
|
1988
2231
|
|
1989
|
-
require-uncached@^1.0.
|
2232
|
+
require-uncached@^1.0.3:
|
1990
2233
|
version "1.0.3"
|
1991
2234
|
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
|
1992
2235
|
dependencies:
|
@@ -1997,18 +2240,18 @@ resolve-from@^1.0.0:
|
|
1997
2240
|
version "1.0.1"
|
1998
2241
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
|
1999
2242
|
|
2000
|
-
resolve@^1.
|
2001
|
-
version "1.
|
2002
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
2243
|
+
resolve@^1.2.0:
|
2244
|
+
version "1.4.0"
|
2245
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
|
2003
2246
|
dependencies:
|
2004
2247
|
path-parse "^1.0.5"
|
2005
2248
|
|
2006
|
-
restore-cursor@^
|
2007
|
-
version "
|
2008
|
-
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-
|
2249
|
+
restore-cursor@^2.0.0:
|
2250
|
+
version "2.0.0"
|
2251
|
+
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
2009
2252
|
dependencies:
|
2010
|
-
|
2011
|
-
|
2253
|
+
onetime "^2.0.0"
|
2254
|
+
signal-exit "^3.0.2"
|
2012
2255
|
|
2013
2256
|
rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4:
|
2014
2257
|
version "2.5.4"
|
@@ -2016,15 +2259,25 @@ rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4:
|
|
2016
2259
|
dependencies:
|
2017
2260
|
glob "^7.0.5"
|
2018
2261
|
|
2019
|
-
run-async@^
|
2020
|
-
version "
|
2021
|
-
resolved "https://registry.yarnpkg.com/run-async/-/run-async-
|
2262
|
+
run-async@^2.2.0:
|
2263
|
+
version "2.3.0"
|
2264
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
|
2022
2265
|
dependencies:
|
2023
|
-
|
2266
|
+
is-promise "^2.1.0"
|
2267
|
+
|
2268
|
+
rx-lite-aggregates@^4.0.8:
|
2269
|
+
version "4.0.8"
|
2270
|
+
resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
|
2271
|
+
dependencies:
|
2272
|
+
rx-lite "*"
|
2273
|
+
|
2274
|
+
rx-lite@*, rx-lite@^4.0.8:
|
2275
|
+
version "4.0.8"
|
2276
|
+
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
|
2024
2277
|
|
2025
|
-
|
2026
|
-
version "
|
2027
|
-
resolved "https://registry.yarnpkg.com/
|
2278
|
+
"semver@2 || 3 || 4 || 5", semver@^5.3.0:
|
2279
|
+
version "5.4.1"
|
2280
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
2028
2281
|
|
2029
2282
|
semver@~5.3.0:
|
2030
2283
|
version "5.3.0"
|
@@ -2038,15 +2291,21 @@ set-immediate-shim@^1.0.1:
|
|
2038
2291
|
version "1.0.1"
|
2039
2292
|
resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
|
2040
2293
|
|
2041
|
-
|
2042
|
-
version "0.
|
2043
|
-
resolved "https://registry.yarnpkg.com/
|
2294
|
+
setimmediate@^1.0.5:
|
2295
|
+
version "1.0.5"
|
2296
|
+
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
2297
|
+
|
2298
|
+
shebang-command@^1.2.0:
|
2299
|
+
version "1.2.0"
|
2300
|
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
|
2044
2301
|
dependencies:
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2302
|
+
shebang-regex "^1.0.0"
|
2303
|
+
|
2304
|
+
shebang-regex@^1.0.0:
|
2305
|
+
version "1.0.0"
|
2306
|
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
2048
2307
|
|
2049
|
-
signal-exit@^3.0.0:
|
2308
|
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
2050
2309
|
version "3.0.2"
|
2051
2310
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
2052
2311
|
|
@@ -2064,15 +2323,29 @@ sntp@1.x.x:
|
|
2064
2323
|
dependencies:
|
2065
2324
|
hoek "2.x.x"
|
2066
2325
|
|
2067
|
-
source-map-support@^0.4.
|
2068
|
-
version "0.4.
|
2069
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.
|
2326
|
+
source-map-support@^0.4.15:
|
2327
|
+
version "0.4.18"
|
2328
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
|
2329
|
+
dependencies:
|
2330
|
+
source-map "^0.5.6"
|
2331
|
+
|
2332
|
+
source-map@^0.5.6:
|
2333
|
+
version "0.5.7"
|
2334
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
2335
|
+
|
2336
|
+
spdx-correct@~1.0.0:
|
2337
|
+
version "1.0.2"
|
2338
|
+
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
|
2070
2339
|
dependencies:
|
2071
|
-
|
2340
|
+
spdx-license-ids "^1.0.2"
|
2341
|
+
|
2342
|
+
spdx-expression-parse@~1.0.0:
|
2343
|
+
version "1.0.4"
|
2344
|
+
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
|
2072
2345
|
|
2073
|
-
|
2074
|
-
version "
|
2075
|
-
resolved "https://registry.yarnpkg.com/
|
2346
|
+
spdx-license-ids@^1.0.2:
|
2347
|
+
version "1.2.2"
|
2348
|
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
|
2076
2349
|
|
2077
2350
|
sprintf-js@~1.0.2:
|
2078
2351
|
version "1.0.3"
|
@@ -2108,6 +2381,13 @@ string-width@^2.0.0:
|
|
2108
2381
|
is-fullwidth-code-point "^2.0.0"
|
2109
2382
|
strip-ansi "^3.0.0"
|
2110
2383
|
|
2384
|
+
string-width@^2.1.0:
|
2385
|
+
version "2.1.1"
|
2386
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
2387
|
+
dependencies:
|
2388
|
+
is-fullwidth-code-point "^2.0.0"
|
2389
|
+
strip-ansi "^4.0.0"
|
2390
|
+
|
2111
2391
|
string_decoder@~0.10.x:
|
2112
2392
|
version "0.10.31"
|
2113
2393
|
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
|
@@ -2122,6 +2402,12 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
|
2122
2402
|
dependencies:
|
2123
2403
|
ansi-regex "^2.0.0"
|
2124
2404
|
|
2405
|
+
strip-ansi@^4.0.0:
|
2406
|
+
version "4.0.0"
|
2407
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
2408
|
+
dependencies:
|
2409
|
+
ansi-regex "^3.0.0"
|
2410
|
+
|
2125
2411
|
strip-bom@^3.0.0:
|
2126
2412
|
version "3.0.0"
|
2127
2413
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
@@ -2134,9 +2420,15 @@ supports-color@^2.0.0:
|
|
2134
2420
|
version "2.0.0"
|
2135
2421
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
2136
2422
|
|
2137
|
-
|
2138
|
-
version "
|
2139
|
-
resolved "https://registry.yarnpkg.com/
|
2423
|
+
supports-color@^4.0.0:
|
2424
|
+
version "4.4.0"
|
2425
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
|
2426
|
+
dependencies:
|
2427
|
+
has-flag "^2.0.0"
|
2428
|
+
|
2429
|
+
table@^4.0.1:
|
2430
|
+
version "4.0.1"
|
2431
|
+
resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"
|
2140
2432
|
dependencies:
|
2141
2433
|
ajv "^4.7.0"
|
2142
2434
|
ajv-keywords "^1.0.0"
|
@@ -2174,10 +2466,20 @@ through@^2.3.6:
|
|
2174
2466
|
version "2.3.8"
|
2175
2467
|
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
2176
2468
|
|
2469
|
+
tmp@^0.0.31:
|
2470
|
+
version "0.0.31"
|
2471
|
+
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"
|
2472
|
+
dependencies:
|
2473
|
+
os-tmpdir "~1.0.1"
|
2474
|
+
|
2177
2475
|
to-fast-properties@^1.0.1:
|
2178
2476
|
version "1.0.2"
|
2179
2477
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
|
2180
2478
|
|
2479
|
+
to-fast-properties@^1.0.3:
|
2480
|
+
version "1.0.3"
|
2481
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
2482
|
+
|
2181
2483
|
tough-cookie@~2.3.0:
|
2182
2484
|
version "2.3.2"
|
2183
2485
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
@@ -2210,6 +2512,10 @@ typedarray@^0.0.6:
|
|
2210
2512
|
version "0.0.6"
|
2211
2513
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
2212
2514
|
|
2515
|
+
ua-parser-js@^0.7.9:
|
2516
|
+
version "0.7.14"
|
2517
|
+
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca"
|
2518
|
+
|
2213
2519
|
uid-number@~0.0.6:
|
2214
2520
|
version "0.0.6"
|
2215
2521
|
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
|
@@ -2218,12 +2524,6 @@ user-home@^1.1.1:
|
|
2218
2524
|
version "1.1.1"
|
2219
2525
|
resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
|
2220
2526
|
|
2221
|
-
user-home@^2.0.0:
|
2222
|
-
version "2.0.0"
|
2223
|
-
resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
|
2224
|
-
dependencies:
|
2225
|
-
os-homedir "^1.0.0"
|
2226
|
-
|
2227
2527
|
util-deprecate@~1.0.1:
|
2228
2528
|
version "1.0.2"
|
2229
2529
|
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
@@ -2232,18 +2532,35 @@ uuid@^3.0.0:
|
|
2232
2532
|
version "3.0.1"
|
2233
2533
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
|
2234
2534
|
|
2235
|
-
v8flags@^2.
|
2236
|
-
version "2.
|
2237
|
-
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.
|
2535
|
+
v8flags@^2.1.1:
|
2536
|
+
version "2.1.1"
|
2537
|
+
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
|
2238
2538
|
dependencies:
|
2239
2539
|
user-home "^1.1.1"
|
2240
2540
|
|
2541
|
+
validate-npm-package-license@^3.0.1:
|
2542
|
+
version "3.0.1"
|
2543
|
+
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
|
2544
|
+
dependencies:
|
2545
|
+
spdx-correct "~1.0.0"
|
2546
|
+
spdx-expression-parse "~1.0.0"
|
2547
|
+
|
2241
2548
|
verror@1.3.6:
|
2242
2549
|
version "1.3.6"
|
2243
2550
|
resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
|
2244
2551
|
dependencies:
|
2245
2552
|
extsprintf "1.0.2"
|
2246
2553
|
|
2554
|
+
whatwg-fetch@>=0.10.0:
|
2555
|
+
version "2.0.3"
|
2556
|
+
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
|
2557
|
+
|
2558
|
+
which@^1.2.9:
|
2559
|
+
version "1.3.0"
|
2560
|
+
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
2561
|
+
dependencies:
|
2562
|
+
isexe "^2.0.0"
|
2563
|
+
|
2247
2564
|
wide-align@^1.1.0:
|
2248
2565
|
version "1.1.0"
|
2249
2566
|
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
|
@@ -2267,3 +2584,7 @@ write@^0.2.1:
|
|
2267
2584
|
xtend@^4.0.0:
|
2268
2585
|
version "4.0.1"
|
2269
2586
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
2587
|
+
|
2588
|
+
yallist@^2.1.2:
|
2589
|
+
version "2.1.2"
|
2590
|
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|