yarnlock 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 56b7cb2aa7b04d90504e8b13f53d392248d9c3f6
4
- data.tar.gz: bed04cfa2af45f81d634716db450a516cad14532
2
+ SHA256:
3
+ metadata.gz: fe76e5905f2e545ed61a3dde7eb5063afe5790b5f37bf6270ad87627aba11710
4
+ data.tar.gz: 816b2878605d3fe5bbee13670d862769d56b2b51f568d3d8d1a951926f42e402
5
5
  SHA512:
6
- metadata.gz: 9ea8bcdd0054f919b12d8442cbe4ee0de71deac29a79c948dca55db892e778996b6a4906169640632e024c687940d342709c3a9fb9877c30e93643117427b37d
7
- data.tar.gz: 9ab389caa79bd4f391e1530964900248a8dc004450bf6d27bb3a57d2289447afebf152f3403cf437d34d4d0ab50f00832adbb4775896c10da779e9f880b35694
6
+ metadata.gz: 5609c9e80c83248e7040832d261d795d4f2f61572b23f5bd7310df24fe43b796471a0ebf2f702d94c8571bccaa7186eb31b6781c92e8f8b8fcb2177504893af5
7
+ data.tar.gz: f28b5038a948e13a7b77c06afcbf0c7b6f394f00d4e97ac356bea66844b237618b0e341b0c50e33083461ef6d4b37fdfe832e20d699de25f6bd59aae1861516e
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.3
2
+ TargetRubyVersion: 2.4
3
3
  DisplayCopNames: true
4
4
  DisplayStyleGuide: true
5
5
  ExtraDetails: true
@@ -11,5 +11,34 @@ Metrics/BlockLength:
11
11
  Exclude:
12
12
  - 'spec/**/*'
13
13
 
14
- Metrics/LineLength:
14
+ Layout/LineLength:
15
15
  Max: 100
16
+
17
+ Lint/DuplicateBranch: # (new in 1.3)
18
+ Enabled: true
19
+ Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
20
+ Enabled: true
21
+ Lint/EmptyBlock: # (new in 1.1)
22
+ Enabled: true
23
+ Lint/EmptyClass: # (new in 1.3)
24
+ Enabled: true
25
+ Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
26
+ Enabled: true
27
+ Lint/ToEnumArguments: # (new in 1.1)
28
+ Enabled: true
29
+ Lint/UnmodifiedReduceAccumulator: # (new in 1.1)
30
+ Enabled: true
31
+ Style/ArgumentsForwarding: # (new in 1.1)
32
+ Enabled: true
33
+ Style/CollectionCompact: # (new in 1.2)
34
+ Enabled: true
35
+ Style/DocumentDynamicEvalDefinition: # (new in 1.1)
36
+ Enabled: true
37
+ Style/NegatedIfElseCondition: # (new in 1.2)
38
+ Enabled: true
39
+ Style/NilLambda: # (new in 1.3)
40
+ Enabled: true
41
+ Style/RedundantArgument: # (new in 1.4)
42
+ Enabled: true
43
+ Style/SwapValues: # (new in 1.1)
44
+ Enabled: true
@@ -1 +1 @@
1
- 2.3.3
1
+ 2.7.2
@@ -1,14 +1,19 @@
1
1
  sudo: false
2
- dist: trusty
3
2
  language: ruby
4
3
  cache:
5
4
  yarn: true
6
5
  bundler: true
6
+ env:
7
+ - NODE_VERSION=stable
8
+ - NODE_VERSION=lts/*
7
9
  rvm:
8
- - 2.3.3
9
- - 2.4.0
10
- - 2.5.0
10
+ - 2.4
11
+ - 2.5
12
+ - 2.6
13
+ - 2.7
14
+ - ruby-head
11
15
  before_install:
16
+ - nvm install $NODE_VERSION
12
17
  - gem update --system
13
18
  - gem install bundler
14
19
  before_script:
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Ruby-Yarnlock
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/yarnlock.svg)](https://badge.fury.io/rb/yarnlock)
4
- [![Build Status](https://travis-ci.org/hiromi2424/ruby-yarnlock.svg?branch=master)](https://travis-ci.org/hiromi2424/ruby-yarnlock)
4
+ [![Build Status](https://travis-ci.com/hiromi2424/ruby-yarnlock.svg?branch=master)](https://travis-ci.com/hiromi2424/ruby-yarnlock)
5
5
 
6
6
  Thin wrapper of [@yarnpkg/lockfile](https://yarnpkg.com/en/package/@yarnpkg/lockfile) for Ruby.
7
7
 
@@ -53,7 +53,17 @@ Original `parse` function of `@yarnpkg/lockfile` returns pure JSON object in jav
53
53
 
54
54
  ### `Yarnlock::Entry::Collection`
55
55
 
56
- is a module that is used for `Yarnlock.stringify` to make `string` as same as `yarn.lock`. In other words, You can modify entries and generate customized `yarn.lock` programmatically. Also it provides an enumeration method to retrieve entries for each packages:
56
+ is a module that is used for `Yarnlock.stringify` to make `string` as same as `yarn.lock`. In other words, You can modify entries and generate customized `yarn.lock` programmatically. Collection is just a instance of `Array`:
57
+
58
+ ```ruby
59
+ yarnlock = Yarnlock.load 'yarn.lock'
60
+ # returns like '@yarnpkg/lockfile' => [<Yarnlock::Entry>]
61
+ yarnlock.group_by(&:package)
62
+ # returns like ["resolve@1.1.7", "resolve@1.3.3"]
63
+ yarnlock.map { |entry| "#{entry.package}@#{entry.version}" }.sort
64
+ ```
65
+
66
+ Also it provides an enumeration method to retrieve entries for each packages easily:
57
67
 
58
68
  #### `package_with_versions` `[Hash<String, <String, Yarnlock::Entry>>]`
59
69
 
@@ -76,7 +86,6 @@ yarnlock.package_with_versions.each do |package, versions|
76
86
  end
77
87
  ```
78
88
 
79
-
80
89
  #### `highest_version_packages` `[Hash<String, Yarnlock::Entry>]`
81
90
 
82
91
  returns hash keyed by package, valued by entry. Since `yarn install` command will install highest resolved version of each package, You can take such package + version pair like:
@@ -26,6 +26,7 @@ module Yarnlock
26
26
  raise "Could not parse yarn.lock: #{parsed['reason']}" if parsed['type'] == 'failure'
27
27
 
28
28
  return parsed['object'] unless config.return_collection
29
+
29
30
  Entry::Collection.parse parsed['object']
30
31
  end
31
32
 
@@ -44,7 +44,7 @@ module Yarnlock
44
44
  'version' => version.to_s,
45
45
  'resolved' => resolved,
46
46
  'dependencies' => dependencies
47
- }.reject { |_, v| v.nil? } # Hash#compact is not supported in Ruby < 2.4
47
+ }.compact
48
48
  }
49
49
  end
50
50
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yarnlock
4
- VERSION = '0.3.1'
4
+ VERSION = '0.3.2'
5
5
  end
@@ -5,11 +5,11 @@
5
5
  "main": "index.js",
6
6
  "license": "MIT",
7
7
  "dependencies": {
8
- "@yarnpkg/lockfile": "^1.0.0",
9
- "eslint": "^4.18.2"
8
+ "@yarnpkg/lockfile": "^1.1.0",
9
+ "eslint": "^7.14.0"
10
10
  },
11
11
  "engines": {
12
- "node": ">=4.0.0"
12
+ "node": "^10.12.0 || >=12.0.0"
13
13
  },
14
14
  "scripts": {
15
15
  "lint": "./node_modules/.bin/eslint ./scripts/*.js"
data/yarn.lock CHANGED
@@ -2,86 +2,106 @@
2
2
  # yarn lockfile v1
3
3
 
4
4
 
5
- "@yarnpkg/lockfile@^1.0.0":
6
- version "1.0.0"
7
- resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.0.0.tgz#33d1dbb659a23b81f87f048762b35a446172add3"
5
+ "@babel/code-frame@^7.0.0":
6
+ version "7.10.4"
7
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
8
+ integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
9
+ dependencies:
10
+ "@babel/highlight" "^7.10.4"
11
+
12
+ "@babel/helper-validator-identifier@^7.10.4":
13
+ version "7.10.4"
14
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
15
+ integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
8
16
 
9
- acorn-jsx@^3.0.0:
10
- version "3.0.1"
11
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
17
+ "@babel/highlight@^7.10.4":
18
+ version "7.10.4"
19
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
20
+ integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
12
21
  dependencies:
13
- acorn "^3.0.4"
22
+ "@babel/helper-validator-identifier" "^7.10.4"
23
+ chalk "^2.0.0"
24
+ js-tokens "^4.0.0"
14
25
 
15
- acorn@^3.0.4:
16
- version "3.3.0"
17
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
26
+ "@eslint/eslintrc@^0.2.1":
27
+ version "0.2.1"
28
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.1.tgz#f72069c330461a06684d119384435e12a5d76e3c"
29
+ integrity sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==
30
+ dependencies:
31
+ ajv "^6.12.4"
32
+ debug "^4.1.1"
33
+ espree "^7.3.0"
34
+ globals "^12.1.0"
35
+ ignore "^4.0.6"
36
+ import-fresh "^3.2.1"
37
+ js-yaml "^3.13.1"
38
+ lodash "^4.17.19"
39
+ minimatch "^3.0.4"
40
+ strip-json-comments "^3.1.1"
18
41
 
19
- acorn@^5.5.0:
20
- version "5.5.3"
21
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9"
42
+ "@yarnpkg/lockfile@^1.1.0":
43
+ version "1.1.0"
44
+ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31"
45
+ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==
22
46
 
23
- ajv-keywords@^2.1.0:
24
- version "2.1.1"
25
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
47
+ acorn-jsx@^5.2.0:
48
+ version "5.3.1"
49
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
50
+ integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
51
+
52
+ acorn@^7.4.0:
53
+ version "7.4.1"
54
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
55
+ integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
26
56
 
27
- ajv@^5.2.3, ajv@^5.3.0:
28
- version "5.5.2"
29
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
57
+ ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4:
58
+ version "6.12.6"
59
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
60
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
30
61
  dependencies:
31
- co "^4.6.0"
32
- fast-deep-equal "^1.0.0"
62
+ fast-deep-equal "^3.1.1"
33
63
  fast-json-stable-stringify "^2.0.0"
34
- json-schema-traverse "^0.3.0"
35
-
36
- ansi-escapes@^3.0.0:
37
- version "3.0.0"
38
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
64
+ json-schema-traverse "^0.4.1"
65
+ uri-js "^4.2.2"
39
66
 
40
- ansi-regex@^2.0.0:
41
- version "2.1.1"
42
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
67
+ ansi-colors@^4.1.1:
68
+ version "4.1.1"
69
+ resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
70
+ integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
43
71
 
44
- ansi-regex@^3.0.0:
45
- version "3.0.0"
46
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
72
+ ansi-regex@^4.1.0:
73
+ version "4.1.0"
74
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
75
+ integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
47
76
 
48
- ansi-styles@^2.2.1:
49
- version "2.2.1"
50
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
77
+ ansi-regex@^5.0.0:
78
+ version "5.0.0"
79
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
80
+ integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
51
81
 
52
- ansi-styles@^3.2.1:
82
+ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
53
83
  version "3.2.1"
54
84
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
55
85
  dependencies:
56
86
  color-convert "^1.9.0"
57
87
 
88
+ ansi-styles@^4.1.0:
89
+ version "4.3.0"
90
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
91
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
92
+ dependencies:
93
+ color-convert "^2.0.1"
94
+
58
95
  argparse@^1.0.7:
59
96
  version "1.0.10"
60
97
  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
61
98
  dependencies:
62
99
  sprintf-js "~1.0.2"
63
100
 
64
- array-union@^1.0.1:
65
- version "1.0.2"
66
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
67
- dependencies:
68
- array-uniq "^1.0.1"
69
-
70
- array-uniq@^1.0.1:
71
- version "1.0.3"
72
- resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
73
-
74
- arrify@^1.0.0:
75
- version "1.0.1"
76
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
77
-
78
- babel-code-frame@^6.22.0:
79
- version "6.26.0"
80
- resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
81
- dependencies:
82
- chalk "^1.1.3"
83
- esutils "^2.0.2"
84
- js-tokens "^3.0.2"
101
+ astral-regex@^1.0.0:
102
+ version "1.0.0"
103
+ resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
104
+ integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
85
105
 
86
106
  balanced-match@^1.0.0:
87
107
  version "1.0.0"
@@ -94,27 +114,12 @@ brace-expansion@^1.1.7:
94
114
  balanced-match "^1.0.0"
95
115
  concat-map "0.0.1"
96
116
 
97
- caller-path@^0.1.0:
98
- version "0.1.0"
99
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
100
- dependencies:
101
- callsites "^0.2.0"
102
-
103
- callsites@^0.2.0:
104
- version "0.2.0"
105
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
106
-
107
- chalk@^1.1.3:
108
- version "1.1.3"
109
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
110
- dependencies:
111
- ansi-styles "^2.2.1"
112
- escape-string-regexp "^1.0.2"
113
- has-ansi "^2.0.0"
114
- strip-ansi "^3.0.0"
115
- supports-color "^2.0.0"
117
+ callsites@^3.0.0:
118
+ version "3.1.0"
119
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
120
+ integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
116
121
 
117
- chalk@^2.0.0, chalk@^2.1.0:
122
+ chalk@^2.0.0:
118
123
  version "2.3.2"
119
124
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65"
120
125
  dependencies:
@@ -122,27 +127,13 @@ chalk@^2.0.0, chalk@^2.1.0:
122
127
  escape-string-regexp "^1.0.5"
123
128
  supports-color "^5.3.0"
124
129
 
125
- chardet@^0.4.0:
126
- version "0.4.2"
127
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
128
-
129
- circular-json@^0.3.1:
130
- version "0.3.3"
131
- resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
132
-
133
- cli-cursor@^2.1.0:
134
- version "2.1.0"
135
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
130
+ chalk@^4.0.0:
131
+ version "4.1.0"
132
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
133
+ integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
136
134
  dependencies:
137
- restore-cursor "^2.0.0"
138
-
139
- cli-width@^2.0.0:
140
- version "2.2.0"
141
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
142
-
143
- co@^4.6.0:
144
- version "4.6.0"
145
- resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
135
+ ansi-styles "^4.1.0"
136
+ supports-color "^7.1.0"
146
137
 
147
138
  color-convert@^1.9.0:
148
139
  version "1.9.1"
@@ -150,191 +141,212 @@ color-convert@^1.9.0:
150
141
  dependencies:
151
142
  color-name "^1.1.1"
152
143
 
144
+ color-convert@^2.0.1:
145
+ version "2.0.1"
146
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
147
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
148
+ dependencies:
149
+ color-name "~1.1.4"
150
+
153
151
  color-name@^1.1.1:
154
152
  version "1.1.3"
155
153
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
156
154
 
155
+ color-name@~1.1.4:
156
+ version "1.1.4"
157
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
158
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
159
+
157
160
  concat-map@0.0.1:
158
161
  version "0.0.1"
159
162
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
160
163
 
161
- concat-stream@^1.6.0:
162
- version "1.6.1"
163
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26"
164
+ cross-spawn@^7.0.2:
165
+ version "7.0.3"
166
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
167
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
164
168
  dependencies:
165
- inherits "^2.0.3"
166
- readable-stream "^2.2.2"
167
- typedarray "^0.0.6"
169
+ path-key "^3.1.0"
170
+ shebang-command "^2.0.0"
171
+ which "^2.0.1"
168
172
 
169
- core-util-is@~1.0.0:
170
- version "1.0.2"
171
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
172
-
173
- cross-spawn@^5.1.0:
174
- version "5.1.0"
175
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
176
- dependencies:
177
- lru-cache "^4.0.1"
178
- shebang-command "^1.2.0"
179
- which "^1.2.9"
180
-
181
- debug@^3.1.0:
182
- version "3.1.0"
183
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
173
+ debug@^4.0.1, debug@^4.1.1:
174
+ version "4.3.1"
175
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
176
+ integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
184
177
  dependencies:
185
- ms "2.0.0"
178
+ ms "2.1.2"
186
179
 
187
- deep-is@~0.1.3:
180
+ deep-is@^0.1.3:
188
181
  version "0.1.3"
189
182
  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
183
+ integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
190
184
 
191
- del@^2.0.2:
192
- version "2.2.2"
193
- resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
185
+ doctrine@^3.0.0:
186
+ version "3.0.0"
187
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
188
+ integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
194
189
  dependencies:
195
- globby "^5.0.0"
196
- is-path-cwd "^1.0.0"
197
- is-path-in-cwd "^1.0.0"
198
- object-assign "^4.0.1"
199
- pify "^2.0.0"
200
- pinkie-promise "^2.0.0"
201
- rimraf "^2.2.8"
190
+ esutils "^2.0.2"
202
191
 
203
- doctrine@^2.1.0:
204
- version "2.1.0"
205
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
192
+ emoji-regex@^7.0.1:
193
+ version "7.0.3"
194
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
195
+ integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
196
+
197
+ enquirer@^2.3.5:
198
+ version "2.3.6"
199
+ resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
200
+ integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
206
201
  dependencies:
207
- esutils "^2.0.2"
202
+ ansi-colors "^4.1.1"
208
203
 
209
- escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
204
+ escape-string-regexp@^1.0.5:
210
205
  version "1.0.5"
211
206
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
212
207
 
213
- eslint-scope@^3.7.1:
214
- version "3.7.1"
215
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
208
+ eslint-scope@^5.1.1:
209
+ version "5.1.1"
210
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
211
+ integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
216
212
  dependencies:
217
- esrecurse "^4.1.0"
213
+ esrecurse "^4.3.0"
218
214
  estraverse "^4.1.1"
219
215
 
220
- eslint-visitor-keys@^1.0.0:
221
- version "1.0.0"
222
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
223
-
224
- eslint@^4.18.2:
225
- version "4.18.2"
226
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45"
227
- dependencies:
228
- ajv "^5.3.0"
229
- babel-code-frame "^6.22.0"
230
- chalk "^2.1.0"
231
- concat-stream "^1.6.0"
232
- cross-spawn "^5.1.0"
233
- debug "^3.1.0"
234
- doctrine "^2.1.0"
235
- eslint-scope "^3.7.1"
236
- eslint-visitor-keys "^1.0.0"
237
- espree "^3.5.2"
238
- esquery "^1.0.0"
216
+ eslint-utils@^2.1.0:
217
+ version "2.1.0"
218
+ resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
219
+ integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
220
+ dependencies:
221
+ eslint-visitor-keys "^1.1.0"
222
+
223
+ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
224
+ version "1.3.0"
225
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
226
+ integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
227
+
228
+ eslint-visitor-keys@^2.0.0:
229
+ version "2.0.0"
230
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
231
+ integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
232
+
233
+ eslint@^7.14.0:
234
+ version "7.14.0"
235
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz#2d2cac1d28174c510a97b377f122a5507958e344"
236
+ integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA==
237
+ dependencies:
238
+ "@babel/code-frame" "^7.0.0"
239
+ "@eslint/eslintrc" "^0.2.1"
240
+ ajv "^6.10.0"
241
+ chalk "^4.0.0"
242
+ cross-spawn "^7.0.2"
243
+ debug "^4.0.1"
244
+ doctrine "^3.0.0"
245
+ enquirer "^2.3.5"
246
+ eslint-scope "^5.1.1"
247
+ eslint-utils "^2.1.0"
248
+ eslint-visitor-keys "^2.0.0"
249
+ espree "^7.3.0"
250
+ esquery "^1.2.0"
239
251
  esutils "^2.0.2"
240
- file-entry-cache "^2.0.0"
252
+ file-entry-cache "^5.0.1"
241
253
  functional-red-black-tree "^1.0.1"
242
- glob "^7.1.2"
243
- globals "^11.0.1"
244
- ignore "^3.3.3"
254
+ glob-parent "^5.0.0"
255
+ globals "^12.1.0"
256
+ ignore "^4.0.6"
257
+ import-fresh "^3.0.0"
245
258
  imurmurhash "^0.1.4"
246
- inquirer "^3.0.6"
247
- is-resolvable "^1.0.0"
248
- js-yaml "^3.9.1"
259
+ is-glob "^4.0.0"
260
+ js-yaml "^3.13.1"
249
261
  json-stable-stringify-without-jsonify "^1.0.1"
250
- levn "^0.3.0"
251
- lodash "^4.17.4"
252
- minimatch "^3.0.2"
253
- mkdirp "^0.5.1"
262
+ levn "^0.4.1"
263
+ lodash "^4.17.19"
264
+ minimatch "^3.0.4"
254
265
  natural-compare "^1.4.0"
255
- optionator "^0.8.2"
256
- path-is-inside "^1.0.2"
257
- pluralize "^7.0.0"
266
+ optionator "^0.9.1"
258
267
  progress "^2.0.0"
259
- require-uncached "^1.0.3"
260
- semver "^5.3.0"
261
- strip-ansi "^4.0.0"
262
- strip-json-comments "~2.0.1"
263
- table "4.0.2"
264
- text-table "~0.2.0"
265
-
266
- espree@^3.5.2:
267
- version "3.5.4"
268
- resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
269
- dependencies:
270
- acorn "^5.5.0"
271
- acorn-jsx "^3.0.0"
268
+ regexpp "^3.1.0"
269
+ semver "^7.2.1"
270
+ strip-ansi "^6.0.0"
271
+ strip-json-comments "^3.1.0"
272
+ table "^5.2.3"
273
+ text-table "^0.2.0"
274
+ v8-compile-cache "^2.0.3"
275
+
276
+ espree@^7.3.0:
277
+ version "7.3.0"
278
+ resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
279
+ integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
280
+ dependencies:
281
+ acorn "^7.4.0"
282
+ acorn-jsx "^5.2.0"
283
+ eslint-visitor-keys "^1.3.0"
272
284
 
273
285
  esprima@^4.0.0:
274
286
  version "4.0.0"
275
287
  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
276
288
 
277
- esquery@^1.0.0:
278
- version "1.0.0"
279
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
289
+ esquery@^1.2.0:
290
+ version "1.3.1"
291
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
292
+ integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
280
293
  dependencies:
281
- estraverse "^4.0.0"
294
+ estraverse "^5.1.0"
282
295
 
283
- esrecurse@^4.1.0:
284
- version "4.2.1"
285
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
296
+ esrecurse@^4.3.0:
297
+ version "4.3.0"
298
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
299
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
286
300
  dependencies:
287
- estraverse "^4.1.0"
301
+ estraverse "^5.2.0"
288
302
 
289
- estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
303
+ estraverse@^4.1.1:
290
304
  version "4.2.0"
291
305
  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
292
306
 
307
+ estraverse@^5.1.0, estraverse@^5.2.0:
308
+ version "5.2.0"
309
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
310
+ integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
311
+
293
312
  esutils@^2.0.2:
294
313
  version "2.0.2"
295
314
  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
296
315
 
297
- external-editor@^2.0.4:
298
- version "2.1.0"
299
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48"
300
- dependencies:
301
- chardet "^0.4.0"
302
- iconv-lite "^0.4.17"
303
- tmp "^0.0.33"
304
-
305
- fast-deep-equal@^1.0.0:
306
- version "1.1.0"
307
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
316
+ fast-deep-equal@^3.1.1:
317
+ version "3.1.3"
318
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
319
+ integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
308
320
 
309
321
  fast-json-stable-stringify@^2.0.0:
310
322
  version "2.0.0"
311
323
  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
312
324
 
313
- fast-levenshtein@~2.0.4:
325
+ fast-levenshtein@^2.0.6:
314
326
  version "2.0.6"
315
327
  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
328
+ integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
316
329
 
317
- figures@^2.0.0:
318
- version "2.0.0"
319
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
330
+ file-entry-cache@^5.0.1:
331
+ version "5.0.1"
332
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
333
+ integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
320
334
  dependencies:
321
- escape-string-regexp "^1.0.5"
335
+ flat-cache "^2.0.1"
322
336
 
323
- file-entry-cache@^2.0.0:
324
- version "2.0.0"
325
- resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
337
+ flat-cache@^2.0.1:
338
+ version "2.0.1"
339
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
340
+ integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
326
341
  dependencies:
327
- flat-cache "^1.2.1"
328
- object-assign "^4.0.1"
342
+ flatted "^2.0.0"
343
+ rimraf "2.6.3"
344
+ write "1.0.3"
329
345
 
330
- flat-cache@^1.2.1:
331
- version "1.3.0"
332
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
333
- dependencies:
334
- circular-json "^0.3.1"
335
- del "^2.0.2"
336
- graceful-fs "^4.1.2"
337
- write "^0.2.1"
346
+ flatted@^2.0.0:
347
+ version "2.0.2"
348
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"
349
+ integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
338
350
 
339
351
  fs.realpath@^1.0.0:
340
352
  version "1.0.0"
@@ -344,9 +356,17 @@ functional-red-black-tree@^1.0.1:
344
356
  version "1.0.1"
345
357
  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
346
358
 
347
- glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
348
- version "7.1.2"
349
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
359
+ glob-parent@^5.0.0:
360
+ version "5.1.1"
361
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
362
+ integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
363
+ dependencies:
364
+ is-glob "^4.0.1"
365
+
366
+ glob@^7.1.3:
367
+ version "7.1.6"
368
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
369
+ integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
350
370
  dependencies:
351
371
  fs.realpath "^1.0.0"
352
372
  inflight "^1.0.4"
@@ -355,42 +375,34 @@ glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
355
375
  once "^1.3.0"
356
376
  path-is-absolute "^1.0.0"
357
377
 
358
- globals@^11.0.1:
359
- version "11.3.0"
360
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0"
361
-
362
- globby@^5.0.0:
363
- version "5.0.0"
364
- resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
365
- dependencies:
366
- array-union "^1.0.1"
367
- arrify "^1.0.0"
368
- glob "^7.0.3"
369
- object-assign "^4.0.1"
370
- pify "^2.0.0"
371
- pinkie-promise "^2.0.0"
372
-
373
- graceful-fs@^4.1.2:
374
- version "4.1.11"
375
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
376
-
377
- has-ansi@^2.0.0:
378
- version "2.0.0"
379
- resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
378
+ globals@^12.1.0:
379
+ version "12.4.0"
380
+ resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
381
+ integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
380
382
  dependencies:
381
- ansi-regex "^2.0.0"
383
+ type-fest "^0.8.1"
382
384
 
383
385
  has-flag@^3.0.0:
384
386
  version "3.0.0"
385
387
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
386
388
 
387
- iconv-lite@^0.4.17:
388
- version "0.4.19"
389
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
389
+ has-flag@^4.0.0:
390
+ version "4.0.0"
391
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
392
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
393
+
394
+ ignore@^4.0.6:
395
+ version "4.0.6"
396
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
397
+ integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
390
398
 
391
- ignore@^3.3.3:
392
- version "3.3.7"
393
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021"
399
+ import-fresh@^3.0.0, import-fresh@^3.2.1:
400
+ version "3.2.2"
401
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e"
402
+ integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==
403
+ dependencies:
404
+ parent-module "^1.0.0"
405
+ resolve-from "^4.0.0"
394
406
 
395
407
  imurmurhash@^0.1.4:
396
408
  version "0.1.4"
@@ -403,107 +415,66 @@ inflight@^1.0.4:
403
415
  once "^1.3.0"
404
416
  wrappy "1"
405
417
 
406
- inherits@2, inherits@^2.0.3, inherits@~2.0.3:
418
+ inherits@2:
407
419
  version "2.0.3"
408
420
  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
409
421
 
410
- inquirer@^3.0.6:
411
- version "3.3.0"
412
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
413
- dependencies:
414
- ansi-escapes "^3.0.0"
415
- chalk "^2.0.0"
416
- cli-cursor "^2.1.0"
417
- cli-width "^2.0.0"
418
- external-editor "^2.0.4"
419
- figures "^2.0.0"
420
- lodash "^4.3.0"
421
- mute-stream "0.0.7"
422
- run-async "^2.2.0"
423
- rx-lite "^4.0.8"
424
- rx-lite-aggregates "^4.0.8"
425
- string-width "^2.1.0"
426
- strip-ansi "^4.0.0"
427
- through "^2.3.6"
422
+ is-extglob@^2.1.1:
423
+ version "2.1.1"
424
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
425
+ integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
428
426
 
429
427
  is-fullwidth-code-point@^2.0.0:
430
428
  version "2.0.0"
431
429
  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
432
430
 
433
- is-path-cwd@^1.0.0:
434
- version "1.0.0"
435
- resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
436
-
437
- is-path-in-cwd@^1.0.0:
438
- version "1.0.0"
439
- resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
440
- dependencies:
441
- is-path-inside "^1.0.0"
442
-
443
- is-path-inside@^1.0.0:
444
- version "1.0.1"
445
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
431
+ is-glob@^4.0.0, is-glob@^4.0.1:
432
+ version "4.0.1"
433
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
434
+ integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
446
435
  dependencies:
447
- path-is-inside "^1.0.1"
448
-
449
- is-promise@^2.1.0:
450
- version "2.1.0"
451
- resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
452
-
453
- is-resolvable@^1.0.0:
454
- version "1.1.0"
455
- resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
456
-
457
- isarray@~1.0.0:
458
- version "1.0.0"
459
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
436
+ is-extglob "^2.1.1"
460
437
 
461
438
  isexe@^2.0.0:
462
439
  version "2.0.0"
463
440
  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
464
441
 
465
- js-tokens@^3.0.2:
466
- version "3.0.2"
467
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
442
+ js-tokens@^4.0.0:
443
+ version "4.0.0"
444
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
445
+ integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
468
446
 
469
- js-yaml@^3.9.1:
470
- version "3.11.0"
471
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef"
447
+ js-yaml@^3.13.1:
448
+ version "3.14.0"
449
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
450
+ integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
472
451
  dependencies:
473
452
  argparse "^1.0.7"
474
453
  esprima "^4.0.0"
475
454
 
476
- json-schema-traverse@^0.3.0:
477
- version "0.3.1"
478
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
455
+ json-schema-traverse@^0.4.1:
456
+ version "0.4.1"
457
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
458
+ integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
479
459
 
480
460
  json-stable-stringify-without-jsonify@^1.0.1:
481
461
  version "1.0.1"
482
462
  resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
483
463
 
484
- levn@^0.3.0, levn@~0.3.0:
485
- version "0.3.0"
486
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
487
- dependencies:
488
- prelude-ls "~1.1.2"
489
- type-check "~0.3.2"
490
-
491
- lodash@^4.17.4, lodash@^4.3.0:
492
- version "4.17.5"
493
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
494
-
495
- lru-cache@^4.0.1:
496
- version "4.1.2"
497
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f"
464
+ levn@^0.4.1:
465
+ version "0.4.1"
466
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
467
+ integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
498
468
  dependencies:
499
- pseudomap "^1.0.2"
500
- yallist "^2.1.2"
469
+ prelude-ls "^1.2.1"
470
+ type-check "~0.4.0"
501
471
 
502
- mimic-fn@^1.0.0:
503
- version "1.2.0"
504
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
472
+ lodash@^4.17.14, lodash@^4.17.19:
473
+ version "4.17.20"
474
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
475
+ integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
505
476
 
506
- minimatch@^3.0.2, minimatch@^3.0.4:
477
+ minimatch@^3.0.4:
507
478
  version "3.0.4"
508
479
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
509
480
  dependencies:
@@ -519,207 +490,137 @@ mkdirp@^0.5.1:
519
490
  dependencies:
520
491
  minimist "0.0.8"
521
492
 
522
- ms@2.0.0:
523
- version "2.0.0"
524
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
525
-
526
- mute-stream@0.0.7:
527
- version "0.0.7"
528
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
493
+ ms@2.1.2:
494
+ version "2.1.2"
495
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
496
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
529
497
 
530
498
  natural-compare@^1.4.0:
531
499
  version "1.4.0"
532
500
  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
533
501
 
534
- object-assign@^4.0.1:
535
- version "4.1.1"
536
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
537
-
538
502
  once@^1.3.0:
539
503
  version "1.4.0"
540
504
  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
541
505
  dependencies:
542
506
  wrappy "1"
543
507
 
544
- onetime@^2.0.0:
545
- version "2.0.1"
546
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
508
+ optionator@^0.9.1:
509
+ version "0.9.1"
510
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
511
+ integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
547
512
  dependencies:
548
- mimic-fn "^1.0.0"
513
+ deep-is "^0.1.3"
514
+ fast-levenshtein "^2.0.6"
515
+ levn "^0.4.1"
516
+ prelude-ls "^1.2.1"
517
+ type-check "^0.4.0"
518
+ word-wrap "^1.2.3"
549
519
 
550
- optionator@^0.8.2:
551
- version "0.8.2"
552
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
520
+ parent-module@^1.0.0:
521
+ version "1.0.1"
522
+ resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
523
+ integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
553
524
  dependencies:
554
- deep-is "~0.1.3"
555
- fast-levenshtein "~2.0.4"
556
- levn "~0.3.0"
557
- prelude-ls "~1.1.2"
558
- type-check "~0.3.2"
559
- wordwrap "~1.0.0"
560
-
561
- os-tmpdir@~1.0.2:
562
- version "1.0.2"
563
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
525
+ callsites "^3.0.0"
564
526
 
565
527
  path-is-absolute@^1.0.0:
566
528
  version "1.0.1"
567
529
  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
568
530
 
569
- path-is-inside@^1.0.1, path-is-inside@^1.0.2:
570
- version "1.0.2"
571
- resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
572
-
573
- pify@^2.0.0:
574
- version "2.3.0"
575
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
531
+ path-key@^3.1.0:
532
+ version "3.1.1"
533
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
534
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
576
535
 
577
- pinkie-promise@^2.0.0:
578
- version "2.0.1"
579
- resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
580
- dependencies:
581
- pinkie "^2.0.0"
582
-
583
- pinkie@^2.0.0:
584
- version "2.0.4"
585
- resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
586
-
587
- pluralize@^7.0.0:
588
- version "7.0.0"
589
- resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
590
-
591
- prelude-ls@~1.1.2:
592
- version "1.1.2"
593
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
594
-
595
- process-nextick-args@~2.0.0:
596
- version "2.0.0"
597
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
536
+ prelude-ls@^1.2.1:
537
+ version "1.2.1"
538
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
539
+ integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
598
540
 
599
541
  progress@^2.0.0:
600
542
  version "2.0.0"
601
543
  resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
602
544
 
603
- pseudomap@^1.0.2:
604
- version "1.0.2"
605
- resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
606
-
607
- readable-stream@^2.2.2:
608
- version "2.3.5"
609
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d"
610
- dependencies:
611
- core-util-is "~1.0.0"
612
- inherits "~2.0.3"
613
- isarray "~1.0.0"
614
- process-nextick-args "~2.0.0"
615
- safe-buffer "~5.1.1"
616
- string_decoder "~1.0.3"
617
- util-deprecate "~1.0.1"
618
-
619
- require-uncached@^1.0.3:
620
- version "1.0.3"
621
- resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
622
- dependencies:
623
- caller-path "^0.1.0"
624
- resolve-from "^1.0.0"
625
-
626
- resolve-from@^1.0.0:
627
- version "1.0.1"
628
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
629
-
630
- restore-cursor@^2.0.0:
631
- version "2.0.0"
632
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
633
- dependencies:
634
- onetime "^2.0.0"
635
- signal-exit "^3.0.2"
545
+ punycode@^2.1.0:
546
+ version "2.1.1"
547
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
548
+ integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
636
549
 
637
- rimraf@^2.2.8:
638
- version "2.6.2"
639
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
640
- dependencies:
641
- glob "^7.0.5"
550
+ regexpp@^3.1.0:
551
+ version "3.1.0"
552
+ resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
553
+ integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
642
554
 
643
- run-async@^2.2.0:
644
- version "2.3.0"
645
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
646
- dependencies:
647
- is-promise "^2.1.0"
555
+ resolve-from@^4.0.0:
556
+ version "4.0.0"
557
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
558
+ integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
648
559
 
649
- rx-lite-aggregates@^4.0.8:
650
- version "4.0.8"
651
- resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
560
+ rimraf@2.6.3:
561
+ version "2.6.3"
562
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
563
+ integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
652
564
  dependencies:
653
- rx-lite "*"
654
-
655
- rx-lite@*, rx-lite@^4.0.8:
656
- version "4.0.8"
657
- resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
658
-
659
- safe-buffer@~5.1.0, safe-buffer@~5.1.1:
660
- version "5.1.1"
661
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
565
+ glob "^7.1.3"
662
566
 
663
- semver@^5.3.0:
664
- version "5.5.0"
665
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
567
+ semver@^7.2.1:
568
+ version "7.3.2"
569
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
570
+ integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
666
571
 
667
- shebang-command@^1.2.0:
668
- version "1.2.0"
669
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
572
+ shebang-command@^2.0.0:
573
+ version "2.0.0"
574
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
575
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
670
576
  dependencies:
671
- shebang-regex "^1.0.0"
577
+ shebang-regex "^3.0.0"
672
578
 
673
- shebang-regex@^1.0.0:
674
- version "1.0.0"
675
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
676
-
677
- signal-exit@^3.0.2:
678
- version "3.0.2"
679
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
579
+ shebang-regex@^3.0.0:
580
+ version "3.0.0"
581
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
582
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
680
583
 
681
- slice-ansi@1.0.0:
682
- version "1.0.0"
683
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
584
+ slice-ansi@^2.1.0:
585
+ version "2.1.0"
586
+ resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
587
+ integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
684
588
  dependencies:
589
+ ansi-styles "^3.2.0"
590
+ astral-regex "^1.0.0"
685
591
  is-fullwidth-code-point "^2.0.0"
686
592
 
687
593
  sprintf-js@~1.0.2:
688
594
  version "1.0.3"
689
595
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
690
596
 
691
- string-width@^2.1.0, string-width@^2.1.1:
692
- version "2.1.1"
693
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
597
+ string-width@^3.0.0:
598
+ version "3.1.0"
599
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
600
+ integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
694
601
  dependencies:
602
+ emoji-regex "^7.0.1"
695
603
  is-fullwidth-code-point "^2.0.0"
696
- strip-ansi "^4.0.0"
697
-
698
- string_decoder@~1.0.3:
699
- version "1.0.3"
700
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
701
- dependencies:
702
- safe-buffer "~5.1.0"
604
+ strip-ansi "^5.1.0"
703
605
 
704
- strip-ansi@^3.0.0:
705
- version "3.0.1"
706
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
606
+ strip-ansi@^5.1.0:
607
+ version "5.2.0"
608
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
609
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
707
610
  dependencies:
708
- ansi-regex "^2.0.0"
611
+ ansi-regex "^4.1.0"
709
612
 
710
- strip-ansi@^4.0.0:
711
- version "4.0.0"
712
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
613
+ strip-ansi@^6.0.0:
614
+ version "6.0.0"
615
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
616
+ integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
713
617
  dependencies:
714
- ansi-regex "^3.0.0"
618
+ ansi-regex "^5.0.0"
715
619
 
716
- strip-json-comments@~2.0.1:
717
- version "2.0.1"
718
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
719
-
720
- supports-color@^2.0.0:
721
- version "2.0.0"
722
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
620
+ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
621
+ version "3.1.1"
622
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
623
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
723
624
 
724
625
  supports-color@^5.3.0:
725
626
  version "5.3.0"
@@ -727,65 +628,71 @@ supports-color@^5.3.0:
727
628
  dependencies:
728
629
  has-flag "^3.0.0"
729
630
 
730
- table@4.0.2:
731
- version "4.0.2"
732
- resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
631
+ supports-color@^7.1.0:
632
+ version "7.2.0"
633
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
634
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
733
635
  dependencies:
734
- ajv "^5.2.3"
735
- ajv-keywords "^2.1.0"
736
- chalk "^2.1.0"
737
- lodash "^4.17.4"
738
- slice-ansi "1.0.0"
739
- string-width "^2.1.1"
636
+ has-flag "^4.0.0"
740
637
 
741
- text-table@~0.2.0:
638
+ table@^5.2.3:
639
+ version "5.4.6"
640
+ resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
641
+ integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
642
+ dependencies:
643
+ ajv "^6.10.2"
644
+ lodash "^4.17.14"
645
+ slice-ansi "^2.1.0"
646
+ string-width "^3.0.0"
647
+
648
+ text-table@^0.2.0:
742
649
  version "0.2.0"
743
650
  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
651
+ integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
744
652
 
745
- through@^2.3.6:
746
- version "2.3.8"
747
- resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
748
-
749
- tmp@^0.0.33:
750
- version "0.0.33"
751
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
653
+ type-check@^0.4.0, type-check@~0.4.0:
654
+ version "0.4.0"
655
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
656
+ integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
752
657
  dependencies:
753
- os-tmpdir "~1.0.2"
658
+ prelude-ls "^1.2.1"
754
659
 
755
- type-check@~0.3.2:
756
- version "0.3.2"
757
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
758
- dependencies:
759
- prelude-ls "~1.1.2"
660
+ type-fest@^0.8.1:
661
+ version "0.8.1"
662
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
663
+ integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
760
664
 
761
- typedarray@^0.0.6:
762
- version "0.0.6"
763
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
665
+ uri-js@^4.2.2:
666
+ version "4.4.0"
667
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
668
+ integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
669
+ dependencies:
670
+ punycode "^2.1.0"
764
671
 
765
- util-deprecate@~1.0.1:
766
- version "1.0.2"
767
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
672
+ v8-compile-cache@^2.0.3:
673
+ version "2.2.0"
674
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
675
+ integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
768
676
 
769
- which@^1.2.9:
770
- version "1.3.0"
771
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
677
+ which@^2.0.1:
678
+ version "2.0.2"
679
+ resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
680
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
772
681
  dependencies:
773
682
  isexe "^2.0.0"
774
683
 
775
- wordwrap@~1.0.0:
776
- version "1.0.0"
777
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
684
+ word-wrap@^1.2.3:
685
+ version "1.2.3"
686
+ resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
687
+ integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
778
688
 
779
689
  wrappy@1:
780
690
  version "1.0.2"
781
691
  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
782
692
 
783
- write@^0.2.1:
784
- version "0.2.1"
785
- resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
693
+ write@1.0.3:
694
+ version "1.0.3"
695
+ resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
696
+ integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
786
697
  dependencies:
787
698
  mkdirp "^0.5.1"
788
-
789
- yallist@^2.1.2:
790
- version "2.1.2"
791
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"