webflow-api 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +338 -0
  2. package/package.json +6 -4
  3. package/yarn.lock +117 -218
package/index.d.ts ADDED
@@ -0,0 +1,338 @@
1
+ declare class Webflow {
2
+ constructor(options: Webflow.WebflowOptions);
3
+
4
+ get<Result extends any>(
5
+ path: string,
6
+ query?: Webflow.WebflowQueryArg
7
+ ): Promise<Result>;
8
+ post<Data extends any, Result extends any>(
9
+ path: string,
10
+ data?: Data,
11
+ query?: Webflow.WebflowQueryArg
12
+ ): Promise<Result>;
13
+ put<Data extends any, Result extends any>(
14
+ path: string,
15
+ data?: Data,
16
+ query?: Webflow.WebflowQueryArg
17
+ ): Promise<Result>;
18
+ patch<Data extends any, Result extends any>(
19
+ path: string,
20
+ data?: Data,
21
+ query?: Webflow.WebflowQueryArg
22
+ ): Promise<Result>;
23
+ delete<Result extends any>(
24
+ path: string,
25
+ query?: Webflow.WebflowQueryArg
26
+ ): Promise<Result>;
27
+
28
+ info(query?: Webflow.WebflowQueryArg): Promise<Webflow.WebflowApiModel.Info>;
29
+
30
+ // sites
31
+
32
+ sites(
33
+ query?: Webflow.WebflowQueryArg
34
+ ): Promise<Webflow.WebflowApiModel.Site[]>;
35
+
36
+ site(
37
+ params: {
38
+ siteId: string;
39
+ },
40
+ query?: Webflow.WebflowQueryArg
41
+ ): Promise<Webflow.WebflowApiModel.Site>;
42
+
43
+ publishSite(
44
+ data: {
45
+ siteId: string;
46
+ domains: string[];
47
+ },
48
+ query?: Webflow.WebflowQueryArg
49
+ ): Promise<{ queued: boolean }>;
50
+
51
+ // Domains
52
+
53
+ domains(
54
+ data: {
55
+ siteId: string;
56
+ },
57
+ query?: Webflow.WebflowQueryArg
58
+ ): Promise<Webflow.WebflowApiModel.Domain[]>;
59
+
60
+ // Collections
61
+
62
+ collections(
63
+ data: {
64
+ siteId: string;
65
+ },
66
+ query?: Webflow.WebflowQueryArg
67
+ ): Promise<Webflow.WebflowApiModel.Collection[]>;
68
+ collection(
69
+ data: {
70
+ collectionId: string;
71
+ },
72
+ query?: Webflow.WebflowQueryArg
73
+ ): Promise<Webflow.WebflowApiModel.Collection>;
74
+
75
+ // Items
76
+
77
+ items(
78
+ data: {
79
+ collectionId: string;
80
+ },
81
+ query?: Webflow.WebflowQueryArg
82
+ ): Promise<Webflow.WebflowApiModel.CollectionItem[]>;
83
+
84
+ item(
85
+ data: {
86
+ collectionId: string;
87
+ itemId: string;
88
+ },
89
+ query?: Webflow.WebflowQueryArg
90
+ ): Promise<Webflow.WebflowApiModel.CollectionItem>;
91
+
92
+ createItem(
93
+ // TODO: add a better data type
94
+ data: { collectionId: string } & Record<string, any>,
95
+ query?: Webflow.WebflowQueryArg
96
+ ): Promise<Webflow.WebflowApiModel.CollectionItem>;
97
+
98
+ updateItem(
99
+ // TODO: add a better data type
100
+ data: { collectionId: string; itemId: string } & Record<string, any>,
101
+ query?: Webflow.WebflowQueryArg
102
+ ): Promise<Webflow.WebflowApiModel.CollectionItem>;
103
+
104
+ removeItem(
105
+ data: { collectionId: string; itemId: string },
106
+ query?: Webflow.WebflowQueryArg
107
+ ): Promise<{ deleted: number }>;
108
+
109
+ patchItem(
110
+ // TODO: add a better data type
111
+ data: { collectionId: string; itemId: string } & Record<string, any>,
112
+ query?: Webflow.WebflowQueryArg
113
+ ): Promise<Webflow.WebflowApiModel.CollectionItem>;
114
+
115
+ // Webhooks
116
+
117
+ webhooks(
118
+ data: { siteId: string },
119
+ query?: Webflow.WebflowQueryArg
120
+ ): Promise<Webflow.WebflowApiModel.Webhook[]>;
121
+
122
+ webhook(
123
+ data: { siteId: string; webhookId: string },
124
+ query?: Webflow.WebflowQueryArg
125
+ ): Promise<Webflow.WebflowApiModel.Webhook>;
126
+
127
+ createWebhook(
128
+ // TODO: add a better data type
129
+ data: { siteId: string } & Record<string, any>,
130
+ query?: Webflow.WebflowQueryArg
131
+ ): Promise<Webflow.WebflowApiModel.Webhook>;
132
+
133
+ removeWebhook(
134
+ data: { siteId: string; webhookId: string },
135
+ query?: Webflow.WebflowQueryArg
136
+ ): Promise<{ deleted: number }>;
137
+ }
138
+
139
+ declare namespace Webflow {
140
+ // other exported properties
141
+ class WebflowError extends Error {}
142
+
143
+ // helper types / namespaces
144
+ type WebflowQueryArg = Record<string, any>;
145
+
146
+ interface WebflowOptions {
147
+ token: string;
148
+ endpoint?: string;
149
+ version?: string;
150
+ }
151
+
152
+ namespace WebflowApiModel {
153
+ interface InfoApplication {
154
+ _id: string;
155
+ description: string;
156
+ homepage: string;
157
+ name: string;
158
+ owner: string;
159
+ ownerType: string;
160
+ }
161
+
162
+ /**
163
+ * https://developers.webflow.com/?javascript#get-current-authorization-info
164
+ */
165
+ interface Info {
166
+ _id: string;
167
+ createdOn: string;
168
+ grantType: string;
169
+ lastUsed: string;
170
+ sites: string[];
171
+ orgs: string[];
172
+ users: string[];
173
+ rateLimit: number;
174
+ status: string;
175
+ application: InfoApplication;
176
+ }
177
+ /**
178
+ * https://developers.webflow.com/?javascript#sites
179
+ */
180
+ interface Site {
181
+ _id: string;
182
+ createdOn: string;
183
+ name: string;
184
+ shortName: string;
185
+ lastPublished: string;
186
+ previewUrl: string;
187
+ timezone: string;
188
+ database: string;
189
+
190
+ collections: OmitFirstArgOfFunction<Webflow["collections"]>;
191
+ webhooks: OmitFirstArgOfFunction<Webflow["webhooks"]>;
192
+ domains: OmitFirstArgOfFunction<Webflow["domains"]>;
193
+ webhook: OmitPropertyFromFirstArgOfFunction<Webflow["webhook"], "siteId">;
194
+ createWebhook: OmitPropertyFromFirstArgOfFunction<
195
+ Webflow["createWebhook"],
196
+ "siteId"
197
+ >;
198
+ removeWebhook: OmitPropertyFromFirstArgOfFunction<
199
+ Webflow["removeWebhook"],
200
+ "siteId"
201
+ >;
202
+ publishSite: OmitPropertyFromFirstArgOfFunction<
203
+ Webflow["publishSite"],
204
+ "siteId"
205
+ >;
206
+ }
207
+
208
+ /**
209
+ * https://developers.webflow.com/?javascript#domains
210
+ */
211
+ interface Domain {
212
+ _id: string;
213
+ name: string;
214
+ }
215
+
216
+ /**
217
+ * https://developers.webflow.com/?javascript#collections
218
+ */
219
+ interface Collection {
220
+ _id: string;
221
+ lastUpdated: string;
222
+ createdOn: string;
223
+ name: string;
224
+ slug: string;
225
+ singularName: string;
226
+ fields: CollectionField[];
227
+
228
+ items: OmitFirstArgOfFunction<Webflow["items"]>;
229
+ item: OmitPropertyFromFirstArgOfFunction<Webflow["item"], "collectionId">;
230
+ createItem: OmitPropertyFromFirstArgOfFunction<
231
+ Webflow["createItem"],
232
+ "collectionId"
233
+ >;
234
+ updateItem: OmitPropertyFromFirstArgOfFunction<
235
+ Webflow["updateItem"],
236
+ "collectionId"
237
+ >;
238
+ removeItem: OmitPropertyFromFirstArgOfFunction<
239
+ Webflow["removeItem"],
240
+ "collectionId"
241
+ >;
242
+ }
243
+
244
+ type CollectionFieldType =
245
+ | "Bool"
246
+ | "Color"
247
+ | "Date"
248
+ | "ExtFileRef"
249
+ | "Set"
250
+ | "ImageRef"
251
+ | "Set"
252
+ | "ItemRef"
253
+ | "ItemRefSet"
254
+ | "Link"
255
+ | "Number"
256
+ | "Option"
257
+ | "PlainText"
258
+ | "RichText"
259
+ | "Video"
260
+ | "User";
261
+
262
+ /**
263
+ * https://developers.webflow.com/?javascript#fields
264
+ */
265
+ interface CollectionField {
266
+ id: string;
267
+ type: CollectionFieldType;
268
+ slug: string;
269
+ name: string;
270
+ required: boolean;
271
+ editable: boolean;
272
+ // TODO: add a better type
273
+ validations: any;
274
+ }
275
+
276
+ /**
277
+ * https://developers.webflow.com/?javascript#items
278
+ */
279
+ interface CollectionItem extends Record<string, any> {
280
+ _archived: boolean;
281
+ _draft: boolean;
282
+ _id: string;
283
+ _cid: string;
284
+ name: string;
285
+ slug: string;
286
+ "updated-on": string;
287
+ "created-on": string;
288
+ "published-on": string;
289
+ "updated-by": string;
290
+ "created-by": string;
291
+ "published-by": string;
292
+
293
+ update: OmitPropertyFromFirstArgOfFunction<
294
+ Webflow["updateItem"],
295
+ "collectionId" | "itemId"
296
+ >;
297
+ remove: OmitFirstArgOfFunction<Webflow["removeItem"]>;
298
+ }
299
+
300
+ type WebhookTriggerType =
301
+ | "form_submission"
302
+ | "site_publish"
303
+ | "ecomm_new_order"
304
+ | "ecomm_order_changed"
305
+ | "ecomm_inventory_changed"
306
+ | "collection_item_created"
307
+ | "collection_item_changed"
308
+ | "collection_item_deleted";
309
+
310
+ interface Webhook {
311
+ _id: string;
312
+ triggerType: WebhookTriggerType;
313
+ triggerId: string;
314
+ site: string;
315
+ filter: string;
316
+ lastUsed: string;
317
+ createdOn: string;
318
+
319
+ remove: OmitFirstArgOfFunction<Webflow["removeWebhook"]>;
320
+ }
321
+ }
322
+ }
323
+
324
+ export = Webflow;
325
+
326
+ type OmitFirstArgOfFunction<Fn> = Fn extends (
327
+ x: any,
328
+ ...args: infer Args
329
+ ) => infer R
330
+ ? (...args: Args) => R
331
+ : never;
332
+
333
+ type OmitPropertyFromFirstArgOfFunction<Fn, P extends string> = Fn extends (
334
+ x: infer A,
335
+ ...args: infer Args
336
+ ) => infer R
337
+ ? (x: Omit<A, P>, ...args: Args) => R
338
+ : never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webflow-api",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "SDK for the Webflow CMS API",
5
5
  "main": "dist/index.js",
6
6
  "jsnext:main": "src/index.js",
@@ -9,11 +9,13 @@
9
9
  "type": "git"
10
10
  },
11
11
  "license": "MIT",
12
+ "types": "index.d.ts",
12
13
  "files": [
13
14
  "dist",
14
15
  "src",
15
16
  "LICENSE",
16
- "yarn.lock"
17
+ "yarn.lock",
18
+ "index.d.ts"
17
19
  ],
18
20
  "scripts": {
19
21
  "build": "BABEL_ENV=production babel --out-dir dist src/",
@@ -36,12 +38,12 @@
36
38
  "eslint": "^3.10.1",
37
39
  "eslint-config-airbnb-base": "^10.0.1",
38
40
  "eslint-plugin-import": "^2.2.0",
39
- "nock": "^9.0.2",
41
+ "nock": "^13.0.7",
40
42
  "nyc": "^9.0.1"
41
43
  },
42
44
  "dependencies": {
43
45
  "es6-error": "^4.0.0",
44
- "isomorphic-fetch": "^2.2.1",
46
+ "isomorphic-fetch": "^3.0.0",
45
47
  "qs": "^6.3.0"
46
48
  },
47
49
  "ava": {
package/yarn.lock CHANGED
@@ -31,18 +31,6 @@ ajv@^4.7.0:
31
31
  co "^4.6.0"
32
32
  json-stable-stringify "^1.0.1"
33
33
 
34
- align-text@^0.1.1, align-text@^0.1.3:
35
- version "0.1.4"
36
- resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
37
- dependencies:
38
- kind-of "^3.0.2"
39
- longest "^1.0.1"
40
- repeat-string "^1.5.2"
41
-
42
- amdefine@>=0.0.4:
43
- version "1.0.1"
44
- resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
45
-
46
34
  ansi-align@^1.1.0:
47
35
  version "1.1.0"
48
36
  resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba"
@@ -138,8 +126,10 @@ arrify@^1.0.0, arrify@^1.0.1:
138
126
  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
139
127
 
140
128
  asn1@~0.2.3:
141
- version "0.2.3"
142
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
129
+ version "0.2.4"
130
+ resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
131
+ dependencies:
132
+ safer-buffer "~2.1.0"
143
133
 
144
134
  assert-plus@^0.2.0:
145
135
  version "0.2.0"
@@ -149,22 +139,14 @@ assert-plus@^1.0.0:
149
139
  version "1.0.0"
150
140
  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
151
141
 
152
- assertion-error@^1.0.1:
153
- version "1.0.2"
154
- resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c"
155
-
156
142
  async-each@^1.0.0:
157
143
  version "1.0.1"
158
144
  resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
159
145
 
160
- async@^1.4.0, async@^1.4.2:
146
+ async@^1.4.2:
161
147
  version "1.5.2"
162
148
  resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
163
149
 
164
- async@~0.2.6:
165
- version "0.2.10"
166
- resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
167
-
168
150
  asynckit@^0.4.0:
169
151
  version "0.4.0"
170
152
  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
@@ -927,8 +909,8 @@ balanced-match@^0.4.1:
927
909
  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
928
910
 
929
911
  bcrypt-pbkdf@^1.0.0:
930
- version "1.0.0"
931
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
912
+ version "1.0.2"
913
+ resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
932
914
  dependencies:
933
915
  tweetnacl "^0.14.3"
934
916
 
@@ -1035,10 +1017,6 @@ camelcase-keys@^2.0.0:
1035
1017
  camelcase "^2.0.0"
1036
1018
  map-obj "^1.0.0"
1037
1019
 
1038
- camelcase@^1.0.2:
1039
- version "1.2.1"
1040
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
1041
-
1042
1020
  camelcase@^2.0.0, camelcase@^2.1.0:
1043
1021
  version "2.1.1"
1044
1022
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
@@ -1055,21 +1033,6 @@ caseless@~0.11.0:
1055
1033
  version "0.11.0"
1056
1034
  resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
1057
1035
 
1058
- center-align@^0.1.1:
1059
- version "0.1.3"
1060
- resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
1061
- dependencies:
1062
- align-text "^0.1.3"
1063
- lazy-cache "^1.0.3"
1064
-
1065
- "chai@>=1.9.2 <4.0.0":
1066
- version "3.5.0"
1067
- resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247"
1068
- dependencies:
1069
- assertion-error "^1.0.1"
1070
- deep-eql "^0.1.3"
1071
- type-detect "^1.0.0"
1072
-
1073
1036
  chalk@^0.4.0:
1074
1037
  version "0.4.0"
1075
1038
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"
@@ -1140,14 +1103,6 @@ cli-width@^2.0.0:
1140
1103
  version "2.1.0"
1141
1104
  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
1142
1105
 
1143
- cliui@^2.1.0:
1144
- version "2.1.0"
1145
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1146
- dependencies:
1147
- center-align "^0.1.1"
1148
- right-align "^0.1.1"
1149
- wordwrap "0.0.2"
1150
-
1151
1106
  cliui@^3.2.0:
1152
1107
  version "3.2.0"
1153
1108
  resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
@@ -1275,8 +1230,8 @@ d@^0.1.1, d@~0.1.1:
1275
1230
  es5-ext "~0.10.2"
1276
1231
 
1277
1232
  dashdash@^1.12.0:
1278
- version "1.14.0"
1279
- resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141"
1233
+ version "1.14.1"
1234
+ resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1280
1235
  dependencies:
1281
1236
  assert-plus "^1.0.0"
1282
1237
 
@@ -1296,16 +1251,17 @@ debug@^2.1.1, debug@^2.2.0:
1296
1251
  dependencies:
1297
1252
  ms "0.7.2"
1298
1253
 
1299
- decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1254
+ debug@^4.1.0:
1255
+ version "4.3.1"
1256
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
1257
+ integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
1258
+ dependencies:
1259
+ ms "2.1.2"
1260
+
1261
+ decamelize@^1.1.1, decamelize@^1.1.2:
1300
1262
  version "1.2.0"
1301
1263
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1302
1264
 
1303
- deep-eql@^0.1.3:
1304
- version "0.1.3"
1305
- resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
1306
- dependencies:
1307
- type-detect "0.1.1"
1308
-
1309
1265
  deep-equal@^1.0.0:
1310
1266
  version "1.0.1"
1311
1267
  resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
@@ -1374,10 +1330,11 @@ eastasianwidth@^0.1.1:
1374
1330
  resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c"
1375
1331
 
1376
1332
  ecc-jsbn@~0.1.1:
1377
- version "0.1.1"
1378
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1333
+ version "0.1.2"
1334
+ resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
1379
1335
  dependencies:
1380
1336
  jsbn "~0.1.0"
1337
+ safer-buffer "^2.1.0"
1381
1338
 
1382
1339
  empower-core@^0.6.1:
1383
1340
  version "0.6.1"
@@ -1386,12 +1343,6 @@ empower-core@^0.6.1:
1386
1343
  call-signature "0.0.2"
1387
1344
  core-js "^2.0.0"
1388
1345
 
1389
- encoding@^0.1.11:
1390
- version "0.1.12"
1391
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1392
- dependencies:
1393
- iconv-lite "~0.4.13"
1394
-
1395
1346
  error-ex@^1.2.0:
1396
1347
  version "1.3.0"
1397
1348
  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
@@ -1609,8 +1560,8 @@ expand-range@^1.8.1:
1609
1560
  fill-range "^2.1.0"
1610
1561
 
1611
1562
  extend@~3.0.0:
1612
- version "3.0.0"
1613
- resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1563
+ version "3.0.2"
1564
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1614
1565
 
1615
1566
  extglob@^0.3.1:
1616
1567
  version "0.3.2"
@@ -1766,8 +1717,10 @@ gauge@~2.6.0:
1766
1717
  wide-align "^1.1.0"
1767
1718
 
1768
1719
  generate-function@^2.0.0:
1769
- version "2.0.0"
1770
- resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1720
+ version "2.3.1"
1721
+ resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
1722
+ dependencies:
1723
+ is-property "^1.0.2"
1771
1724
 
1772
1725
  generate-object-property@^1.1.0:
1773
1726
  version "1.2.0"
@@ -1784,8 +1737,8 @@ get-stdin@^4.0.1:
1784
1737
  resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1785
1738
 
1786
1739
  getpass@^0.1.1:
1787
- version "0.1.6"
1788
- resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1740
+ version "0.1.7"
1741
+ resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1789
1742
  dependencies:
1790
1743
  assert-plus "^1.0.0"
1791
1744
 
@@ -1867,14 +1820,15 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1867
1820
  resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1868
1821
 
1869
1822
  handlebars@^4.0.3:
1870
- version "4.0.6"
1871
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7"
1823
+ version "4.7.6"
1824
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
1872
1825
  dependencies:
1873
- async "^1.4.0"
1874
- optimist "^0.6.1"
1875
- source-map "^0.4.4"
1826
+ minimist "^1.2.5"
1827
+ neo-async "^2.6.0"
1828
+ source-map "^0.6.1"
1829
+ wordwrap "^1.0.0"
1876
1830
  optionalDependencies:
1877
- uglify-js "^2.6"
1831
+ uglify-js "^3.1.4"
1878
1832
 
1879
1833
  har-validator@~2.0.6:
1880
1834
  version "2.0.6"
@@ -1897,7 +1851,7 @@ has-color@^0.1.7, has-color@~0.1.0:
1897
1851
 
1898
1852
  has-flag@^1.0.0:
1899
1853
  version "1.0.0"
1900
- resolved "http://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1854
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1901
1855
 
1902
1856
  has-flag@^2.0.0:
1903
1857
  version "2.0.0"
@@ -1945,10 +1899,6 @@ http-signature@~1.1.0:
1945
1899
  jsprim "^1.2.2"
1946
1900
  sshpk "^1.7.0"
1947
1901
 
1948
- iconv-lite@~0.4.13:
1949
- version "0.4.15"
1950
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb"
1951
-
1952
1902
  ignore-by-default@^1.0.0, ignore-by-default@^1.0.1:
1953
1903
  version "1.0.1"
1954
1904
  resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
@@ -2092,12 +2042,17 @@ is-glob@^2.0.0, is-glob@^2.0.1:
2092
2042
  dependencies:
2093
2043
  is-extglob "^1.0.0"
2094
2044
 
2045
+ is-my-ip-valid@^1.0.0:
2046
+ version "1.0.0"
2047
+ resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824"
2048
+
2095
2049
  is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4:
2096
- version "2.15.0"
2097
- resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
2050
+ version "2.20.5"
2051
+ resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz#5eca6a8232a687f68869b7361be1612e7512e5df"
2098
2052
  dependencies:
2099
2053
  generate-function "^2.0.0"
2100
2054
  generate-object-property "^1.1.0"
2055
+ is-my-ip-valid "^1.0.0"
2101
2056
  jsonpointer "^4.0.0"
2102
2057
  xtend "^4.0.0"
2103
2058
 
@@ -2153,7 +2108,7 @@ is-promise@^2.1.0:
2153
2108
  version "2.1.0"
2154
2109
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2155
2110
 
2156
- is-property@^1.0.0:
2111
+ is-property@^1.0.0, is-property@^1.0.2:
2157
2112
  version "1.0.2"
2158
2113
  resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
2159
2114
 
@@ -2171,7 +2126,7 @@ is-retry-allowed@^1.0.0:
2171
2126
  version "1.1.0"
2172
2127
  resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
2173
2128
 
2174
- is-stream@^1.0.0, is-stream@^1.0.1:
2129
+ is-stream@^1.0.0:
2175
2130
  version "1.1.0"
2176
2131
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2177
2132
 
@@ -2201,12 +2156,13 @@ isobject@^2.0.0:
2201
2156
  dependencies:
2202
2157
  isarray "1.0.0"
2203
2158
 
2204
- isomorphic-fetch@^2.2.1:
2205
- version "2.2.1"
2206
- resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
2159
+ isomorphic-fetch@^3.0.0:
2160
+ version "3.0.0"
2161
+ resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz#0267b005049046d2421207215d45d6a262b8b8b4"
2162
+ integrity sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==
2207
2163
  dependencies:
2208
- node-fetch "^1.0.1"
2209
- whatwg-fetch ">=0.10.0"
2164
+ node-fetch "^2.6.1"
2165
+ whatwg-fetch "^3.4.1"
2210
2166
 
2211
2167
  isstream@~0.1.2:
2212
2168
  version "0.1.2"
@@ -2260,12 +2216,6 @@ istanbul-reports@^1.0.0:
2260
2216
  dependencies:
2261
2217
  handlebars "^4.0.3"
2262
2218
 
2263
- jodid25519@^1.0.0:
2264
- version "1.0.2"
2265
- resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2266
- dependencies:
2267
- jsbn "~0.1.0"
2268
-
2269
2219
  js-tokens@^2.0.0:
2270
2220
  version "2.0.0"
2271
2221
  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
@@ -2278,8 +2228,8 @@ js-yaml@^3.5.1:
2278
2228
  esprima "^2.6.0"
2279
2229
 
2280
2230
  jsbn@~0.1.0:
2281
- version "0.1.0"
2282
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
2231
+ version "0.1.1"
2232
+ resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2283
2233
 
2284
2234
  jsesc@^1.3.0:
2285
2235
  version "1.3.0"
@@ -2312,8 +2262,8 @@ jsonify@~0.0.0:
2312
2262
  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2313
2263
 
2314
2264
  jsonpointer@^4.0.0:
2315
- version "4.0.0"
2316
- resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
2265
+ version "4.1.0"
2266
+ resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.1.0.tgz#501fb89986a2389765ba09e6053299ceb4f2c2cc"
2317
2267
 
2318
2268
  jsprim@^1.2.2:
2319
2269
  version "1.3.1"
@@ -2341,10 +2291,6 @@ latest-version@^2.0.0:
2341
2291
  dependencies:
2342
2292
  package-json "^2.0.0"
2343
2293
 
2344
- lazy-cache@^1.0.3:
2345
- version "1.0.4"
2346
- resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2347
-
2348
2294
  lazy-req@^1.1.0:
2349
2295
  version "1.1.0"
2350
2296
  resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac"
@@ -2388,18 +2334,15 @@ lodash.pickby@^4.6.0:
2388
2334
  version "4.6.0"
2389
2335
  resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
2390
2336
 
2337
+ lodash.set@^4.3.2:
2338
+ version "4.3.2"
2339
+ resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
2340
+ integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=
2341
+
2391
2342
  lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0:
2392
2343
  version "4.17.2"
2393
2344
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42"
2394
2345
 
2395
- lodash@~4.9.0:
2396
- version "4.9.0"
2397
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.9.0.tgz#4c20d742f03ce85dc700e0dd7ab9bcab85e6fc14"
2398
-
2399
- longest@^1.0.1:
2400
- version "1.0.1"
2401
- resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2402
-
2403
2346
  loose-envify@^1.0.0:
2404
2347
  version "1.3.0"
2405
2348
  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
@@ -2503,13 +2446,13 @@ mime-types@^2.1.12, mime-types@~2.1.7:
2503
2446
  dependencies:
2504
2447
  brace-expansion "^1.0.0"
2505
2448
 
2506
- minimist@0.0.8, minimist@~0.0.1:
2449
+ minimist@0.0.8:
2507
2450
  version "0.0.8"
2508
2451
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2509
2452
 
2510
- minimist@^1.1.3, minimist@^1.2.0:
2511
- version "1.2.0"
2512
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2453
+ minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
2454
+ version "1.2.5"
2455
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
2513
2456
 
2514
2457
  "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
2515
2458
  version "0.5.1"
@@ -2525,6 +2468,11 @@ ms@0.7.2, ms@^0.7.1:
2525
2468
  version "0.7.2"
2526
2469
  resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2527
2470
 
2471
+ ms@2.1.2:
2472
+ version "2.1.2"
2473
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2474
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2475
+
2528
2476
  multimatch@^2.1.0:
2529
2477
  version "2.1.0"
2530
2478
  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"
@@ -2546,25 +2494,24 @@ natural-compare@^1.4.0:
2546
2494
  version "1.4.0"
2547
2495
  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2548
2496
 
2549
- nock@^9.0.2:
2550
- version "9.0.2"
2551
- resolved "https://registry.yarnpkg.com/nock/-/nock-9.0.2.tgz#f6a5f4a8d560d61f48b5ad428ccff8dc9b62701e"
2497
+ neo-async@^2.6.0:
2498
+ version "2.6.2"
2499
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
2500
+
2501
+ nock@^13.0.7:
2502
+ version "13.0.7"
2503
+ resolved "https://registry.yarnpkg.com/nock/-/nock-13.0.7.tgz#9bc718c66bd0862dfa14601a9ba678a406127910"
2504
+ integrity sha512-WBz73VYIjdbO6BwmXODRQLtn7B5tldA9pNpWJe5QTtTEscQlY5KXU4srnGzBOK2fWakkXj69gfTnXGzmrsaRWw==
2552
2505
  dependencies:
2553
- chai ">=1.9.2 <4.0.0"
2554
- debug "^2.2.0"
2555
- deep-equal "^1.0.0"
2506
+ debug "^4.1.0"
2556
2507
  json-stringify-safe "^5.0.1"
2557
- lodash "~4.9.0"
2558
- mkdirp "^0.5.0"
2559
- propagate "0.4.0"
2560
- qs "^6.0.2"
2508
+ lodash.set "^4.3.2"
2509
+ propagate "^2.0.0"
2561
2510
 
2562
- node-fetch@^1.0.1:
2563
- version "1.6.3"
2564
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04"
2565
- dependencies:
2566
- encoding "^0.1.11"
2567
- is-stream "^1.0.1"
2511
+ node-fetch@^2.6.1:
2512
+ version "2.6.1"
2513
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
2514
+ integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
2568
2515
 
2569
2516
  node-pre-gyp@^0.6.29:
2570
2517
  version "0.6.31"
@@ -2695,13 +2642,6 @@ onetime@^1.0.0:
2695
2642
  version "1.1.0"
2696
2643
  resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
2697
2644
 
2698
- optimist@^0.6.1:
2699
- version "0.6.1"
2700
- resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2701
- dependencies:
2702
- minimist "~0.0.1"
2703
- wordwrap "~0.0.2"
2704
-
2705
2645
  option-chain@^0.1.0:
2706
2646
  version "0.1.1"
2707
2647
  resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd"
@@ -2956,9 +2896,10 @@ progress@^1.1.8:
2956
2896
  version "1.1.8"
2957
2897
  resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
2958
2898
 
2959
- propagate@0.4.0:
2960
- version "0.4.0"
2961
- resolved "https://registry.yarnpkg.com/propagate/-/propagate-0.4.0.tgz#f3fcca0a6fe06736a7ba572966069617c130b481"
2899
+ propagate@^2.0.0:
2900
+ version "2.0.1"
2901
+ resolved "https://registry.yarnpkg.com/propagate/-/propagate-2.0.1.tgz#40cdedab18085c792334e64f0ac17256d38f9a45"
2902
+ integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==
2962
2903
 
2963
2904
  pseudomap@^1.0.1:
2964
2905
  version "1.0.2"
@@ -2968,9 +2909,9 @@ punycode@^1.4.1:
2968
2909
  version "1.4.1"
2969
2910
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2970
2911
 
2971
- qs@^6.0.2, qs@^6.3.0, qs@~6.3.0:
2972
- version "6.3.0"
2973
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442"
2912
+ qs@^6.3.0, qs@~6.3.0:
2913
+ version "6.3.2"
2914
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c"
2974
2915
 
2975
2916
  randomatic@^1.1.3:
2976
2917
  version "1.1.5"
@@ -3191,12 +3132,6 @@ restore-cursor@^1.0.1:
3191
3132
  exit-hook "^1.0.0"
3192
3133
  onetime "^1.0.0"
3193
3134
 
3194
- right-align@^0.1.1:
3195
- version "0.1.3"
3196
- resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3197
- dependencies:
3198
- align-text "^0.1.1"
3199
-
3200
3135
  rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4:
3201
3136
  version "2.5.4"
3202
3137
  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
@@ -3213,6 +3148,10 @@ rx-lite@^3.1.2:
3213
3148
  version "3.1.2"
3214
3149
  resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
3215
3150
 
3151
+ safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
3152
+ version "2.1.2"
3153
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3154
+
3216
3155
  semver-diff@^2.0.0:
3217
3156
  version "2.1.0"
3218
3157
  resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
@@ -3277,16 +3216,14 @@ source-map-support@^0.4.0, source-map-support@^0.4.2:
3277
3216
  dependencies:
3278
3217
  source-map "^0.5.3"
3279
3218
 
3280
- source-map@^0.4.4:
3281
- version "0.4.4"
3282
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3283
- dependencies:
3284
- amdefine ">=0.0.4"
3285
-
3286
- source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1:
3219
+ source-map@^0.5.0, source-map@^0.5.3:
3287
3220
  version "0.5.6"
3288
3221
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3289
3222
 
3223
+ source-map@^0.6.1:
3224
+ version "0.6.1"
3225
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3226
+
3290
3227
  spawn-wrap@^1.2.4:
3291
3228
  version "1.2.4"
3292
3229
  resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40"
@@ -3317,18 +3254,17 @@ sprintf-js@~1.0.2:
3317
3254
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3318
3255
 
3319
3256
  sshpk@^1.7.0:
3320
- version "1.10.1"
3321
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
3257
+ version "1.16.1"
3258
+ resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
3322
3259
  dependencies:
3323
3260
  asn1 "~0.2.3"
3324
3261
  assert-plus "^1.0.0"
3325
- dashdash "^1.12.0"
3326
- getpass "^0.1.1"
3327
- optionalDependencies:
3328
3262
  bcrypt-pbkdf "^1.0.0"
3263
+ dashdash "^1.12.0"
3329
3264
  ecc-jsbn "~0.1.1"
3330
- jodid25519 "^1.0.0"
3265
+ getpass "^0.1.1"
3331
3266
  jsbn "~0.1.0"
3267
+ safer-buffer "^2.0.2"
3332
3268
  tweetnacl "~0.14.0"
3333
3269
 
3334
3270
  stack-utils@^0.4.0:
@@ -3515,8 +3451,8 @@ tunnel-agent@~0.4.1:
3515
3451
  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
3516
3452
 
3517
3453
  tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3518
- version "0.14.3"
3519
- resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d"
3454
+ version "0.14.5"
3455
+ resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3520
3456
 
3521
3457
  type-check@~0.3.2:
3522
3458
  version "0.3.2"
@@ -3524,14 +3460,6 @@ type-check@~0.3.2:
3524
3460
  dependencies:
3525
3461
  prelude-ls "~1.1.2"
3526
3462
 
3527
- type-detect@0.1.1:
3528
- version "0.1.1"
3529
- resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
3530
-
3531
- type-detect@^1.0.0:
3532
- version "1.0.0"
3533
- resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"
3534
-
3535
3463
  type-name@^2.0.1:
3536
3464
  version "2.0.2"
3537
3465
  resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4"
@@ -3540,18 +3468,9 @@ typedarray@~0.0.5:
3540
3468
  version "0.0.6"
3541
3469
  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3542
3470
 
3543
- uglify-js@^2.6:
3544
- version "2.7.4"
3545
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2"
3546
- dependencies:
3547
- async "~0.2.6"
3548
- source-map "~0.5.1"
3549
- uglify-to-browserify "~1.0.0"
3550
- yargs "~3.10.0"
3551
-
3552
- uglify-to-browserify@~1.0.0:
3553
- version "1.0.2"
3554
- resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3471
+ uglify-js@^3.1.4:
3472
+ version "3.10.3"
3473
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.3.tgz#f0d2f99736c14de46d2d24649ba328be3e71c3bf"
3555
3474
 
3556
3475
  uid-number@~0.0.6:
3557
3476
  version "0.0.6"
@@ -3629,9 +3548,10 @@ verror@1.3.6:
3629
3548
  dependencies:
3630
3549
  extsprintf "1.0.2"
3631
3550
 
3632
- whatwg-fetch@>=0.10.0:
3633
- version "2.0.1"
3634
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.1.tgz#078b9461bbe91cea73cbce8bb122a05f9e92b772"
3551
+ whatwg-fetch@^3.4.1:
3552
+ version "3.5.0"
3553
+ resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz#605a2cd0a7146e5db141e29d1c62ab84c0c4c868"
3554
+ integrity sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A==
3635
3555
 
3636
3556
  which-module@^1.0.0:
3637
3557
  version "1.0.0"
@@ -3655,23 +3575,11 @@ widest-line@^1.0.0:
3655
3575
  dependencies:
3656
3576
  string-width "^1.0.1"
3657
3577
 
3658
- window-size@0.1.0:
3659
- version "0.1.0"
3660
- resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3661
-
3662
3578
  window-size@^0.2.0:
3663
3579
  version "0.2.0"
3664
3580
  resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075"
3665
3581
 
3666
- wordwrap@0.0.2:
3667
- version "0.0.2"
3668
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3669
-
3670
- wordwrap@~0.0.2:
3671
- version "0.0.3"
3672
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3673
-
3674
- wordwrap@~1.0.0:
3582
+ wordwrap@^1.0.0, wordwrap@~1.0.0:
3675
3583
  version "1.0.0"
3676
3584
  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3677
3585
 
@@ -3724,8 +3632,8 @@ xdg-basedir@^2.0.0:
3724
3632
  os-homedir "^1.0.0"
3725
3633
 
3726
3634
  xtend@^4.0.0, xtend@~4.0.0:
3727
- version "4.0.1"
3728
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3635
+ version "4.0.2"
3636
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
3729
3637
 
3730
3638
  y18n@^3.2.1:
3731
3639
  version "3.2.1"
@@ -3759,12 +3667,3 @@ yargs@^6.4.0:
3759
3667
  window-size "^0.2.0"
3760
3668
  y18n "^3.2.1"
3761
3669
  yargs-parser "^4.1.0"
3762
-
3763
- yargs@~3.10.0:
3764
- version "3.10.0"
3765
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3766
- dependencies:
3767
- camelcase "^1.0.2"
3768
- cliui "^2.1.0"
3769
- decamelize "^1.0.0"
3770
- window-size "0.1.0"