mutils 1.1.4 → 1.1.5

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
2
  SHA256:
3
- metadata.gz: c53a2ab142ea9ca0eeb3b92ee837aec6de592aa4aead5fc2bd22ea43523be6ff
4
- data.tar.gz: c9ecc7587fe9580301424db14ff707ad4c8f3412de7931698458feb12272dd20
3
+ metadata.gz: b5c567bf5aa5bfe887405a8cfed4ae0338a5a51548c5ab3d1e0be6fb02174b02
4
+ data.tar.gz: e7b3bf3cb5fa59f674cbcb192a1e2f4b1f85fdefd124887be79130a007b488cd
5
5
  SHA512:
6
- metadata.gz: 74f011750ab1c9fa1c419b83dd25aa4bf6156e27af7d9fd2152b452588801663377fdb5f1b3db9fb6c5dded155da14642e028daf3194f282a037e3553e2fcd76
7
- data.tar.gz: 44d53fd17d2d710be489ef332c5e18c89c991a7e01123b1de6ce0ca5f53fcb8b05b28e996679d2d4ec9b14a5c375a9668089c563b6235f313d5809102c6b90c2
6
+ metadata.gz: ab7551ce465dc23f257cbf2d8430b1d3861381b6e6fc784ff5d55000f94e90f90ea752a38abf0f87145549dda3ec468c316707160357256d5f39391c636b6d32
7
+ data.tar.gz: b1590530b08ceb4f64584dcd6d4ec3fe499337ebc83392c395aaf49a0275f9c93de0e0631c57c255926b3bce945beeb991a8104429e9aac78434f8f60ef0fc08
@@ -0,0 +1,25 @@
1
+ name: Master
2
+ on:
3
+ push:
4
+ branches: [master]
5
+ jobs:
6
+ testing:
7
+ runs-on: ubuntu-20.04
8
+ strategy:
9
+ matrix:
10
+ ruby: [2.5, 2.6, 2.7, jruby, truffleruby]
11
+ name: Test with ruby ${{ matrix.ruby }}
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: ${{ matrix.ruby }}
17
+ bundler-cache: true
18
+ - name: Run Rubocop
19
+ run: bundle exec rubocop lib
20
+ - name: Run Test
21
+ run: bundle exec rspec
22
+ - name: Coveralls
23
+ uses: coverallsapp/github-action@master
24
+ with:
25
+ github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,27 @@
1
+ name: Pull Requests
2
+ on:
3
+ push:
4
+ branches:
5
+ - '*'
6
+ - '!master'
7
+ jobs:
8
+ testing:
9
+ runs-on: ubuntu-20.04
10
+ strategy:
11
+ matrix:
12
+ ruby: [2.5, 2.6, 2.7, jruby, truffleruby]
13
+ name: Test with ruby ${{ matrix.ruby }}
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: ruby/setup-ruby@v1
17
+ with:
18
+ ruby-version: ${{ matrix.ruby }}
19
+ bundler-cache: true
20
+ - name: Run Rubocop
21
+ run: bundle exec rubocop lib
22
+ - name: Run Test
23
+ run: bundle exec rspec
24
+ - name: Coveralls
25
+ uses: coverallsapp/github-action@master
26
+ with:
27
+ github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,30 @@
1
+ name: Release
2
+ on:
3
+ push:
4
+ branches: [master]
5
+ jobs:
6
+ release:
7
+ runs-on: ubuntu-20.04
8
+ name: Release
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Use Node.js
12
+ uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 13.x
15
+ - uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: 2.7
18
+ bundler-cache: true
19
+ - name: Run Rubocop
20
+ run: bundle exec rubocop lib
21
+ - name: Run Test
22
+ run: bundle exec rspec
23
+ - name: Publish
24
+ env:
25
+ RUBYGEMS_AUTH_TOKEN: ${{ secrets.RUBYGEMS_AUTH_TOKEN }}
26
+ GITHUB_TOKEN: ${{ secrets.P_GITHUB_TOKEN }}
27
+ run: |
28
+ npm install
29
+ npx semantic-release
30
+
@@ -0,0 +1 @@
1
+ debug.fullTrace=true
@@ -1,28 +1,28 @@
1
- rvm:
2
- - 2.5
3
- - 2.6.3
4
- - 2.6.5
5
- - 2.7.0
6
- - 2.7.1
7
- - jruby-9.2.13.0
8
- sudo: false
9
- language: ruby
10
- cache: bundler
11
- before_install:
12
- - gem install bundler -v 2.0.1
13
- - gem install rspec
14
- - nvm use 11
15
- - npm install
16
- script: bundle exec rubocop lib && bundle exec rspec
17
- branches:
18
- only: master
19
- bundler_args: --with=development,test --jobs=3 --retry=3
20
- jobs:
21
- include:
22
- - stage: release
23
- rvm: 2.6.5
24
- script: npx semantic-release
25
- stages:
26
- - test
27
- - name: release
28
- if: (NOT type IN (pull_request)) AND (branch = master)
1
+ #rvm:
2
+ # - 2.5
3
+ # - 2.6.3
4
+ # - 2.6.5
5
+ # - 2.7.0
6
+ # - 2.7.1
7
+ # - jruby-9.2.13.0
8
+ #sudo: false
9
+ #language: ruby
10
+ #cache: bundler
11
+ #before_install:
12
+ # - gem install bundler -v 2.0.1
13
+ # - gem install rspec
14
+ # - nvm use 11
15
+ # - npm install
16
+ #script: bundle exec rubocop lib && bundle exec rspec
17
+ #branches:
18
+ # only: master
19
+ #bundler_args: --with=development,test --jobs=3 --retry=3
20
+ #jobs:
21
+ # include:
22
+ # - stage: release
23
+ # rvm: 2.6.5
24
+ # script: npx semantic-release
25
+ #stages:
26
+ # - test
27
+ # - name: release
28
+ # if: (NOT type IN (pull_request)) AND (branch = master)
@@ -1,3 +1,10 @@
1
+ ## [1.1.5](https://github.com/Code-Vedas/mutils/compare/v1.1.4...v1.1.5) (2020-11-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **maintenance:** maintenance release ([e408524](https://github.com/Code-Vedas/mutils/commit/e40852474eccda21cd5685d1c2cf15e4d6623d45))
7
+
1
8
  ## [1.1.4](https://github.com/Code-Vedas/mutils/compare/v1.1.3...v1.1.4) (2020-10-19)
2
9
 
3
10
 
data/Gemfile CHANGED
@@ -10,4 +10,5 @@ gem 'rspec'
10
10
  gem 'rspec-benchmark'
11
11
  gem 'rspec-json_expectations'
12
12
  gem 'rubocop'
13
+ gem 'simplecov-lcov', git: 'https://github.com/niteshpurohit/simplecov-lcov'
13
14
  gemspec
@@ -1,7 +1,13 @@
1
+ GIT
2
+ remote: https://github.com/niteshpurohit/simplecov-lcov
3
+ revision: f1f759f078b19a2c0c13c1cb16cfff96d915e807
4
+ specs:
5
+ simplecov-lcov (0.8.0)
6
+
1
7
  PATH
2
8
  remote: .
3
9
  specs:
4
- mutils (1.1.3)
10
+ mutils (1.1.4)
5
11
  dry-inflector
6
12
 
7
13
  GEM
@@ -17,12 +23,12 @@ GEM
17
23
  term-ansicolor (~> 1.3)
18
24
  thor (>= 0.19.4, < 2.0)
19
25
  tins (~> 1.6)
20
- diff-lcs (1.3)
26
+ diff-lcs (1.4.4)
21
27
  docile (1.3.2)
22
28
  dry-inflector (0.2.0)
23
29
  json (2.3.1)
24
30
  json (2.3.1-java)
25
- parallel (1.19.2)
31
+ parallel (1.20.0)
26
32
  parser (2.7.2.0)
27
33
  ast (~> 2.4.1)
28
34
  pluginator (1.5.0)
@@ -32,35 +38,35 @@ GEM
32
38
  rake (13.0.1)
33
39
  regexp_parser (1.8.2)
34
40
  rexml (3.2.4)
35
- rspec (3.9.0)
36
- rspec-core (~> 3.9.0)
37
- rspec-expectations (~> 3.9.0)
38
- rspec-mocks (~> 3.9.0)
41
+ rspec (3.10.0)
42
+ rspec-core (~> 3.10.0)
43
+ rspec-expectations (~> 3.10.0)
44
+ rspec-mocks (~> 3.10.0)
39
45
  rspec-benchmark (0.6.0)
40
46
  benchmark-malloc (~> 0.2)
41
47
  benchmark-perf (~> 0.6)
42
48
  benchmark-trend (~> 0.4)
43
49
  rspec (>= 3.0)
44
- rspec-core (3.9.1)
45
- rspec-support (~> 3.9.1)
46
- rspec-expectations (3.9.1)
50
+ rspec-core (3.10.0)
51
+ rspec-support (~> 3.10.0)
52
+ rspec-expectations (3.10.0)
47
53
  diff-lcs (>= 1.2.0, < 2.0)
48
- rspec-support (~> 3.9.0)
54
+ rspec-support (~> 3.10.0)
49
55
  rspec-json_expectations (2.2.0)
50
- rspec-mocks (3.9.1)
56
+ rspec-mocks (3.10.0)
51
57
  diff-lcs (>= 1.2.0, < 2.0)
52
- rspec-support (~> 3.9.0)
53
- rspec-support (3.9.2)
54
- rubocop (0.93.1)
58
+ rspec-support (~> 3.10.0)
59
+ rspec-support (3.10.0)
60
+ rubocop (1.3.1)
55
61
  parallel (~> 1.10)
56
62
  parser (>= 2.7.1.5)
57
63
  rainbow (>= 2.2.2, < 4.0)
58
64
  regexp_parser (>= 1.8)
59
65
  rexml
60
- rubocop-ast (>= 0.6.0)
66
+ rubocop-ast (>= 1.1.1)
61
67
  ruby-progressbar (~> 1.7)
62
68
  unicode-display_width (>= 1.4.0, < 2.0)
63
- rubocop-ast (0.8.0)
69
+ rubocop-ast (1.1.1)
64
70
  parser (>= 2.7.1.5)
65
71
  ruby-progressbar (1.10.1)
66
72
  simplecov (0.16.1)
@@ -91,6 +97,7 @@ DEPENDENCIES
91
97
  rspec-benchmark
92
98
  rspec-json_expectations
93
99
  rubocop
100
+ simplecov-lcov!
94
101
 
95
102
  BUNDLED WITH
96
103
  2.1.4
data/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
  ![](https://ruby-gem-downloads-badge.herokuapp.com/mutils?type=total&color=brightgreen)
3
3
  [![Gem Version](https://badge.fury.io/rb/mutils.svg)](https://badge.fury.io/rb/mutils)
4
4
  [![Coverage Status](https://coveralls.io/repos/github/Code-Vedas/mutils/badge.svg?branch=master)](https://coveralls.io/github/Code-Vedas/mutils?branch=master)
5
- [![Build Status](https://travis-ci.com/code-vedas/mutils.svg?branch=master)](https://travis-ci.com/code-vedas/mutils)
5
+ ![Master](https://github.com/Code-Vedas/mutils/workflows/Master/badge.svg?branch=master)
6
+
6
7
  # Mutils
7
8
  ## Introduction
8
9
  `mutils` is collection of useful modules for `ruby on rails` which is tested and benchmarked against high load.
data/Version CHANGED
@@ -1 +1 @@
1
- v1.1.4
1
+ v1.1.5
@@ -5,6 +5,6 @@ set -euo pipefail
5
5
  mkdir -p $HOME/.gem
6
6
  touch $HOME/.gem/credentials
7
7
  chmod 0600 $HOME/.gem/credentials
8
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
8
+ printf -- "---\n:rubygems_api_key: ${RUBYGEMS_AUTH_TOKEN}\n" > $HOME/.gem/credentials
9
9
  gem build *.gemspec
10
- gem push *.gem
10
+ gem push *.gem
@@ -7,6 +7,7 @@ module Mutils
7
7
  # BaseSerializer: inherit this class to get Serializer functionality
8
8
  class BaseSerializer
9
9
  attr_reader :scope
10
+
10
11
  include Mutils::Serialization::SerializationIncludes
11
12
  include Mutils::Serialization::SerializationMethods
12
13
  include Mutils::Serialization::SerializationResults
@@ -14,12 +14,10 @@ module Mutils
14
14
  end
15
15
 
16
16
  def class_exists?(class_name)
17
- klass = begin
18
- Mutils::Lib::Helper.instance.constantize(class_name.to_s)
19
- rescue StandardError
20
- nil
21
- end
17
+ klass = Mutils::Lib::Helper.instance.constantize(class_name.to_s)
22
18
  klass && defined?(klass) && klass.is_a?(Class)
19
+ rescue StandardError
20
+ false
23
21
  end
24
22
  end
25
23
  end
@@ -26,7 +26,6 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency 'bundler', '~> 2.0'
27
27
  spec.add_development_dependency 'rake', '~> 13.0'
28
28
 
29
-
30
29
  spec.metadata = {
31
30
  'bug_tracker_uri' => 'https://github.com/code-vedas/mutils/issues',
32
31
  'source_code_uri' => "https://github.com/code-vedas/mutils/tree/v#{Mutils::VERSION}"
@@ -350,18 +350,18 @@
350
350
  }
351
351
  },
352
352
  "@octokit/auth-token": {
353
- "version": "2.4.2",
354
- "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.2.tgz",
355
- "integrity": "sha512-jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ==",
353
+ "version": "2.4.3",
354
+ "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.3.tgz",
355
+ "integrity": "sha512-fdGoOQ3kQJh+hrilc0Plg50xSfaCKOeYN9t6dpJKXN9BxhhfquL0OzoQXg3spLYymL5rm29uPeI3KEXRaZQ9zg==",
356
356
  "dev": true,
357
357
  "requires": {
358
358
  "@octokit/types": "^5.0.0"
359
359
  }
360
360
  },
361
361
  "@octokit/core": {
362
- "version": "2.5.4",
363
- "resolved": "https://registry.npmjs.org/@octokit/core/-/core-2.5.4.tgz",
364
- "integrity": "sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==",
362
+ "version": "3.2.1",
363
+ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.2.1.tgz",
364
+ "integrity": "sha512-XfFSDDwv6tclUenS0EmB6iA7u+4aOHBT1Lz4PtQNQQg3hBbNaR/+Uv5URU+egeIuuGAiMRiDyY92G4GBOWOqDA==",
365
365
  "dev": true,
366
366
  "requires": {
367
367
  "@octokit/auth-token": "^2.4.0",
@@ -369,87 +369,60 @@
369
369
  "@octokit/request": "^5.4.0",
370
370
  "@octokit/types": "^5.0.0",
371
371
  "before-after-hook": "^2.1.0",
372
- "universal-user-agent": "^5.0.0"
372
+ "universal-user-agent": "^6.0.0"
373
373
  }
374
374
  },
375
375
  "@octokit/endpoint": {
376
- "version": "6.0.6",
377
- "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.6.tgz",
378
- "integrity": "sha512-7Cc8olaCoL/mtquB7j/HTbPM+sY6Ebr4k2X2y4JoXpVKQ7r5xB4iGQE0IoO58wIPsUk4AzoT65AMEpymSbWTgQ==",
376
+ "version": "6.0.9",
377
+ "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.9.tgz",
378
+ "integrity": "sha512-3VPLbcCuqji4IFTclNUtGdp9v7g+nspWdiCUbK3+iPMjJCZ6LEhn1ts626bWLOn0GiDb6j+uqGvPpqLnY7pBgw==",
379
379
  "dev": true,
380
380
  "requires": {
381
381
  "@octokit/types": "^5.0.0",
382
382
  "is-plain-object": "^5.0.0",
383
383
  "universal-user-agent": "^6.0.0"
384
- },
385
- "dependencies": {
386
- "universal-user-agent": {
387
- "version": "6.0.0",
388
- "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz",
389
- "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==",
390
- "dev": true
391
- }
392
384
  }
393
385
  },
394
386
  "@octokit/graphql": {
395
- "version": "4.5.6",
396
- "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.5.6.tgz",
397
- "integrity": "sha512-Rry+unqKTa3svswT2ZAuqenpLrzJd+JTv89LTeVa5UM/5OX8o4KTkPL7/1ABq4f/ZkELb0XEK/2IEoYwykcLXg==",
387
+ "version": "4.5.7",
388
+ "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.5.7.tgz",
389
+ "integrity": "sha512-Gk0AR+DcwIK/lK/GX+OQ99UqtenQhcbrhHHfOYlrCQe17ADnX3EKAOKRsAZ9qZvpi5MuwWm/Nm+9aO2kTDSdyA==",
398
390
  "dev": true,
399
391
  "requires": {
400
392
  "@octokit/request": "^5.3.0",
401
393
  "@octokit/types": "^5.0.0",
402
394
  "universal-user-agent": "^6.0.0"
403
- },
404
- "dependencies": {
405
- "universal-user-agent": {
406
- "version": "6.0.0",
407
- "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz",
408
- "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==",
409
- "dev": true
410
- }
411
395
  }
412
396
  },
413
397
  "@octokit/plugin-paginate-rest": {
414
- "version": "2.4.0",
415
- "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.4.0.tgz",
416
- "integrity": "sha512-YT6Klz3LLH6/nNgi0pheJnUmTFW4kVnxGft+v8Itc41IIcjl7y1C8TatmKQBbCSuTSNFXO5pCENnqg6sjwpJhg==",
398
+ "version": "2.6.0",
399
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.6.0.tgz",
400
+ "integrity": "sha512-o+O8c1PqsC5++BHXfMZabRRsBIVb34tXPWyQLyp2IXq5MmkxdipS7TXM4Y9ldL1PzY9CTrCsn/lzFFJGM3oRRA==",
417
401
  "dev": true,
418
402
  "requires": {
419
403
  "@octokit/types": "^5.5.0"
420
404
  }
421
405
  },
422
406
  "@octokit/plugin-request-log": {
423
- "version": "1.0.0",
424
- "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz",
425
- "integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==",
407
+ "version": "1.0.2",
408
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.2.tgz",
409
+ "integrity": "sha512-oTJSNAmBqyDR41uSMunLQKMX0jmEXbwD1fpz8FG27lScV3RhtGfBa1/BBLym+PxcC16IBlF7KH9vP1BUYxA+Eg==",
426
410
  "dev": true
427
411
  },
428
412
  "@octokit/plugin-rest-endpoint-methods": {
429
- "version": "3.17.0",
430
- "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.17.0.tgz",
431
- "integrity": "sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==",
413
+ "version": "4.2.1",
414
+ "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.2.1.tgz",
415
+ "integrity": "sha512-QyFr4Bv807Pt1DXZOC5a7L5aFdrwz71UHTYoHVajYV5hsqffWm8FUl9+O7nxRu5PDMtB/IKrhFqTmdBTK5cx+A==",
432
416
  "dev": true,
433
417
  "requires": {
434
- "@octokit/types": "^4.1.6",
418
+ "@octokit/types": "^5.5.0",
435
419
  "deprecation": "^2.3.1"
436
- },
437
- "dependencies": {
438
- "@octokit/types": {
439
- "version": "4.1.10",
440
- "resolved": "https://registry.npmjs.org/@octokit/types/-/types-4.1.10.tgz",
441
- "integrity": "sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==",
442
- "dev": true,
443
- "requires": {
444
- "@types/node": ">= 8"
445
- }
446
- }
447
420
  }
448
421
  },
449
422
  "@octokit/request": {
450
- "version": "5.4.9",
451
- "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.4.9.tgz",
452
- "integrity": "sha512-CzwVvRyimIM1h2n9pLVYfTDmX9m+KHSgCpqPsY8F1NdEK8IaWqXhSBXsdjOBFZSpEcxNEeg4p0UO9cQ8EnOCLA==",
423
+ "version": "5.4.10",
424
+ "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.4.10.tgz",
425
+ "integrity": "sha512-egA49HkqEORVGDZGav1mh+VD+7uLgOxtn5oODj6guJk0HCy+YBSYapFkSLFgeYj3Fr18ZULKGURkjyhkAChylw==",
453
426
  "dev": true,
454
427
  "requires": {
455
428
  "@octokit/endpoint": "^6.0.1",
@@ -460,20 +433,12 @@
460
433
  "node-fetch": "^2.6.1",
461
434
  "once": "^1.4.0",
462
435
  "universal-user-agent": "^6.0.0"
463
- },
464
- "dependencies": {
465
- "universal-user-agent": {
466
- "version": "6.0.0",
467
- "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz",
468
- "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==",
469
- "dev": true
470
- }
471
436
  }
472
437
  },
473
438
  "@octokit/request-error": {
474
- "version": "2.0.2",
475
- "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.2.tgz",
476
- "integrity": "sha512-2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw==",
439
+ "version": "2.0.3",
440
+ "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.3.tgz",
441
+ "integrity": "sha512-GgD5z8Btm301i2zfvJLk/mkhvGCdjQ7wT8xF9ov5noQY8WbKZDH9cOBqXzoeKd1mLr1xH2FwbtGso135zGBgTA==",
477
442
  "dev": true,
478
443
  "requires": {
479
444
  "@octokit/types": "^5.0.1",
@@ -482,15 +447,15 @@
482
447
  }
483
448
  },
484
449
  "@octokit/rest": {
485
- "version": "17.11.2",
486
- "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-17.11.2.tgz",
487
- "integrity": "sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ==",
450
+ "version": "18.0.9",
451
+ "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.0.9.tgz",
452
+ "integrity": "sha512-CC5+cIx974Ygx9lQNfUn7/oXDQ9kqGiKUC6j1A9bAVZZ7aoTF8K6yxu0pQhQrLBwSl92J6Z3iVDhGhGFgISCZg==",
488
453
  "dev": true,
489
454
  "requires": {
490
- "@octokit/core": "^2.4.3",
455
+ "@octokit/core": "^3.0.0",
491
456
  "@octokit/plugin-paginate-rest": "^2.2.0",
492
457
  "@octokit/plugin-request-log": "^1.0.0",
493
- "@octokit/plugin-rest-endpoint-methods": "3.17.0"
458
+ "@octokit/plugin-rest-endpoint-methods": "4.2.1"
494
459
  }
495
460
  },
496
461
  "@octokit/types": {
@@ -596,12 +561,12 @@
596
561
  }
597
562
  },
598
563
  "@semantic-release/github": {
599
- "version": "7.1.1",
600
- "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-7.1.1.tgz",
601
- "integrity": "sha512-w8CLCvGVKNe2FPOYQ68OFxFVNNha7YRzptnwTZYdjXYtgTDKw0XVfnMSd9NlJeQPYGfQmIhIVPNBU/cA6zUY0A==",
564
+ "version": "7.2.0",
565
+ "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-7.2.0.tgz",
566
+ "integrity": "sha512-tMRnWiiWb43whRHvbDGXq4DGEbKRi56glDpXDJZit4PIiwDPX7Kx3QzmwRtDOcG+8lcpGjpdPabYZ9NBxoI2mw==",
602
567
  "dev": true,
603
568
  "requires": {
604
- "@octokit/rest": "^17.0.0",
569
+ "@octokit/rest": "^18.0.0",
605
570
  "@semantic-release/error": "^2.2.0",
606
571
  "aggregate-error": "^3.0.0",
607
572
  "bottleneck": "^2.18.1",
@@ -620,9 +585,9 @@
620
585
  }
621
586
  },
622
587
  "@semantic-release/npm": {
623
- "version": "7.0.6",
624
- "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-7.0.6.tgz",
625
- "integrity": "sha512-F4judxdeLe8f7+vDva1TkqNc5Tb2tcltZYW0tLtvP2Xt7CD/gGiz7UxAWEOPsXBvIqAP+uTidvGLPl9U3/uRoQ==",
588
+ "version": "7.0.8",
589
+ "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-7.0.8.tgz",
590
+ "integrity": "sha512-8c1TLwKB/xT5E1FNs5l4GFtaNTznHesJk7tw3pGSlVxRqDXa1EZI+DfziZlO58Wk3PpS2ecu661kvBdz9aMgYQ==",
626
591
  "dev": true,
627
592
  "requires": {
628
593
  "@semantic-release/error": "^2.2.0",
@@ -632,12 +597,12 @@
632
597
  "lodash": "^4.17.15",
633
598
  "nerf-dart": "^1.0.0",
634
599
  "normalize-url": "^5.0.0",
635
- "npm": "^6.13.0",
600
+ "npm": "^6.14.8",
636
601
  "rc": "^1.2.8",
637
602
  "read-pkg": "^5.0.0",
638
603
  "registry-auth-token": "^4.0.0",
639
604
  "semver": "^7.1.2",
640
- "tempy": "^0.5.0"
605
+ "tempy": "^1.0.0"
641
606
  },
642
607
  "dependencies": {
643
608
  "semver": {
@@ -685,9 +650,9 @@
685
650
  "dev": true
686
651
  },
687
652
  "@types/node": {
688
- "version": "14.10.1",
689
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.10.1.tgz",
690
- "integrity": "sha512-aYNbO+FZ/3KGeQCEkNhHFRIzBOUgc7QvcVNKXbfnhDkSfwUv91JsQQa10rDgKSTSLkXZ1UIyPe4FJJNVgw1xWQ==",
653
+ "version": "14.14.8",
654
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.8.tgz",
655
+ "integrity": "sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA==",
691
656
  "dev": true
692
657
  },
693
658
  "@types/normalize-package-data": {
@@ -719,9 +684,9 @@
719
684
  }
720
685
  },
721
686
  "agent-base": {
722
- "version": "6.0.1",
723
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.1.tgz",
724
- "integrity": "sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg==",
687
+ "version": "6.0.2",
688
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
689
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
725
690
  "dev": true,
726
691
  "requires": {
727
692
  "debug": "4"
@@ -818,6 +783,12 @@
818
783
  "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
819
784
  "dev": true
820
785
  },
786
+ "balanced-match": {
787
+ "version": "1.0.0",
788
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
789
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
790
+ "dev": true
791
+ },
821
792
  "before-after-hook": {
822
793
  "version": "2.1.0",
823
794
  "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz",
@@ -830,6 +801,16 @@
830
801
  "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==",
831
802
  "dev": true
832
803
  },
804
+ "brace-expansion": {
805
+ "version": "1.1.11",
806
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
807
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
808
+ "dev": true,
809
+ "requires": {
810
+ "balanced-match": "^1.0.0",
811
+ "concat-map": "0.0.1"
812
+ }
813
+ },
833
814
  "braces": {
834
815
  "version": "3.0.2",
835
816
  "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
@@ -963,9 +944,9 @@
963
944
  "dev": true
964
945
  },
965
946
  "commander": {
966
- "version": "6.1.0",
967
- "resolved": "https://registry.npmjs.org/commander/-/commander-6.1.0.tgz",
968
- "integrity": "sha512-wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA==",
947
+ "version": "6.2.0",
948
+ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.0.tgz",
949
+ "integrity": "sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==",
969
950
  "dev": true
970
951
  },
971
952
  "compare-func": {
@@ -984,6 +965,12 @@
984
965
  "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==",
985
966
  "dev": true
986
967
  },
968
+ "concat-map": {
969
+ "version": "0.0.1",
970
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
971
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
972
+ "dev": true
973
+ },
987
974
  "conventional-changelog-angular": {
988
975
  "version": "5.0.11",
989
976
  "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz",
@@ -1022,35 +1009,104 @@
1022
1009
  }
1023
1010
  },
1024
1011
  "conventional-changelog-writer": {
1025
- "version": "4.0.17",
1026
- "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz",
1027
- "integrity": "sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==",
1012
+ "version": "4.0.18",
1013
+ "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.18.tgz",
1014
+ "integrity": "sha512-mAQDCKyB9HsE8Ko5cCM1Jn1AWxXPYV0v8dFPabZRkvsiWUul2YyAqbIaoMKF88Zf2ffnOPSvKhboLf3fnjo5/A==",
1028
1015
  "dev": true,
1029
1016
  "requires": {
1030
1017
  "compare-func": "^2.0.0",
1031
- "conventional-commits-filter": "^2.0.6",
1018
+ "conventional-commits-filter": "^2.0.7",
1032
1019
  "dateformat": "^3.0.0",
1033
1020
  "handlebars": "^4.7.6",
1034
1021
  "json-stringify-safe": "^5.0.1",
1035
1022
  "lodash": "^4.17.15",
1036
- "meow": "^7.0.0",
1023
+ "meow": "^8.0.0",
1037
1024
  "semver": "^6.0.0",
1038
1025
  "split": "^1.0.0",
1039
- "through2": "^3.0.0"
1026
+ "through2": "^4.0.0"
1040
1027
  },
1041
1028
  "dependencies": {
1029
+ "hosted-git-info": {
1030
+ "version": "3.0.7",
1031
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
1032
+ "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==",
1033
+ "dev": true,
1034
+ "requires": {
1035
+ "lru-cache": "^6.0.0"
1036
+ }
1037
+ },
1038
+ "meow": {
1039
+ "version": "8.0.0",
1040
+ "resolved": "https://registry.npmjs.org/meow/-/meow-8.0.0.tgz",
1041
+ "integrity": "sha512-nbsTRz2fwniJBFgUkcdISq8y/q9n9VbiHYbfwklFh5V4V2uAcxtKQkDc0yCLPM/kP0d+inZBewn3zJqewHE7kg==",
1042
+ "dev": true,
1043
+ "requires": {
1044
+ "@types/minimist": "^1.2.0",
1045
+ "camelcase-keys": "^6.2.2",
1046
+ "decamelize-keys": "^1.1.0",
1047
+ "hard-rejection": "^2.1.0",
1048
+ "minimist-options": "4.1.0",
1049
+ "normalize-package-data": "^3.0.0",
1050
+ "read-pkg-up": "^7.0.1",
1051
+ "redent": "^3.0.0",
1052
+ "trim-newlines": "^3.0.0",
1053
+ "type-fest": "^0.18.0",
1054
+ "yargs-parser": "^20.2.3"
1055
+ }
1056
+ },
1057
+ "normalize-package-data": {
1058
+ "version": "3.0.0",
1059
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.0.tgz",
1060
+ "integrity": "sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw==",
1061
+ "dev": true,
1062
+ "requires": {
1063
+ "hosted-git-info": "^3.0.6",
1064
+ "resolve": "^1.17.0",
1065
+ "semver": "^7.3.2",
1066
+ "validate-npm-package-license": "^3.0.1"
1067
+ },
1068
+ "dependencies": {
1069
+ "semver": {
1070
+ "version": "7.3.2",
1071
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
1072
+ "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
1073
+ "dev": true
1074
+ }
1075
+ }
1076
+ },
1042
1077
  "semver": {
1043
1078
  "version": "6.3.0",
1044
1079
  "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1045
1080
  "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1046
1081
  "dev": true
1082
+ },
1083
+ "through2": {
1084
+ "version": "4.0.2",
1085
+ "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
1086
+ "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
1087
+ "dev": true,
1088
+ "requires": {
1089
+ "readable-stream": "3"
1090
+ }
1091
+ },
1092
+ "type-fest": {
1093
+ "version": "0.18.1",
1094
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz",
1095
+ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==",
1096
+ "dev": true
1097
+ },
1098
+ "yargs-parser": {
1099
+ "version": "20.2.4",
1100
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
1101
+ "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
1102
+ "dev": true
1047
1103
  }
1048
1104
  }
1049
1105
  },
1050
1106
  "conventional-commits-filter": {
1051
- "version": "2.0.6",
1052
- "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz",
1053
- "integrity": "sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==",
1107
+ "version": "2.0.7",
1108
+ "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz",
1109
+ "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==",
1054
1110
  "dev": true,
1055
1111
  "requires": {
1056
1112
  "lodash.ismatch": "^4.4.0",
@@ -1163,6 +1219,22 @@
1163
1219
  "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
1164
1220
  "dev": true
1165
1221
  },
1222
+ "del": {
1223
+ "version": "6.0.0",
1224
+ "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz",
1225
+ "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==",
1226
+ "dev": true,
1227
+ "requires": {
1228
+ "globby": "^11.0.1",
1229
+ "graceful-fs": "^4.2.4",
1230
+ "is-glob": "^4.0.1",
1231
+ "is-path-cwd": "^2.2.0",
1232
+ "is-path-inside": "^3.0.2",
1233
+ "p-map": "^4.0.0",
1234
+ "rimraf": "^3.0.2",
1235
+ "slash": "^3.0.0"
1236
+ }
1237
+ },
1166
1238
  "deprecation": {
1167
1239
  "version": "2.3.1",
1168
1240
  "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
@@ -1317,9 +1389,9 @@
1317
1389
  }
1318
1390
  },
1319
1391
  "fastq": {
1320
- "version": "1.8.0",
1321
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz",
1322
- "integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==",
1392
+ "version": "1.9.0",
1393
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz",
1394
+ "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==",
1323
1395
  "dev": true,
1324
1396
  "requires": {
1325
1397
  "reusify": "^1.0.4"
@@ -1410,6 +1482,12 @@
1410
1482
  "universalify": "^1.0.0"
1411
1483
  }
1412
1484
  },
1485
+ "fs.realpath": {
1486
+ "version": "1.0.0",
1487
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1488
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
1489
+ "dev": true
1490
+ },
1413
1491
  "get-caller-file": {
1414
1492
  "version": "2.0.5",
1415
1493
  "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
@@ -1509,6 +1587,20 @@
1509
1587
  "through2": "^3.0.0"
1510
1588
  }
1511
1589
  },
1590
+ "glob": {
1591
+ "version": "7.1.6",
1592
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
1593
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
1594
+ "dev": true,
1595
+ "requires": {
1596
+ "fs.realpath": "^1.0.0",
1597
+ "inflight": "^1.0.4",
1598
+ "inherits": "2",
1599
+ "minimatch": "^3.0.4",
1600
+ "once": "^1.3.0",
1601
+ "path-is-absolute": "^1.0.0"
1602
+ }
1603
+ },
1512
1604
  "glob-parent": {
1513
1605
  "version": "5.1.1",
1514
1606
  "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
@@ -1683,6 +1775,16 @@
1683
1775
  "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
1684
1776
  "dev": true
1685
1777
  },
1778
+ "inflight": {
1779
+ "version": "1.0.6",
1780
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1781
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
1782
+ "dev": true,
1783
+ "requires": {
1784
+ "once": "^1.3.0",
1785
+ "wrappy": "1"
1786
+ }
1787
+ },
1686
1788
  "inherits": {
1687
1789
  "version": "2.0.4",
1688
1790
  "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
@@ -1744,6 +1846,18 @@
1744
1846
  "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
1745
1847
  "dev": true
1746
1848
  },
1849
+ "is-path-cwd": {
1850
+ "version": "2.2.0",
1851
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
1852
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
1853
+ "dev": true
1854
+ },
1855
+ "is-path-inside": {
1856
+ "version": "3.0.2",
1857
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz",
1858
+ "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==",
1859
+ "dev": true
1860
+ },
1747
1861
  "is-plain-obj": {
1748
1862
  "version": "1.1.0",
1749
1863
  "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
@@ -1855,20 +1969,20 @@
1855
1969
  "dev": true
1856
1970
  },
1857
1971
  "lint-staged": {
1858
- "version": "10.4.2",
1859
- "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.4.2.tgz",
1860
- "integrity": "sha512-OLCA9K1hS+Sl179SO6kX0JtnsaKj/MZalEhUj5yAgXsb63qPI/Gfn6Ua1KuZdbfkZNEu3/n5C/obYCu70IMt9g==",
1972
+ "version": "10.5.1",
1973
+ "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.1.tgz",
1974
+ "integrity": "sha512-fTkTGFtwFIJJzn/PbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO/h6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==",
1861
1975
  "dev": true,
1862
1976
  "requires": {
1863
1977
  "chalk": "^4.1.0",
1864
1978
  "cli-truncate": "^2.1.0",
1865
- "commander": "^6.0.0",
1979
+ "commander": "^6.2.0",
1866
1980
  "cosmiconfig": "^7.0.0",
1867
- "debug": "^4.1.1",
1981
+ "debug": "^4.2.0",
1868
1982
  "dedent": "^0.7.0",
1869
1983
  "enquirer": "^2.3.6",
1870
- "execa": "^4.0.3",
1871
- "listr2": "^2.6.0",
1984
+ "execa": "^4.1.0",
1985
+ "listr2": "^3.2.2",
1872
1986
  "log-symbols": "^4.0.0",
1873
1987
  "micromatch": "^4.0.2",
1874
1988
  "normalize-path": "^3.0.0",
@@ -1889,13 +2003,39 @@
1889
2003
  "path-type": "^4.0.0",
1890
2004
  "yaml": "^1.10.0"
1891
2005
  }
2006
+ },
2007
+ "debug": {
2008
+ "version": "4.2.0",
2009
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
2010
+ "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
2011
+ "dev": true,
2012
+ "requires": {
2013
+ "ms": "2.1.2"
2014
+ }
2015
+ },
2016
+ "execa": {
2017
+ "version": "4.1.0",
2018
+ "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
2019
+ "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
2020
+ "dev": true,
2021
+ "requires": {
2022
+ "cross-spawn": "^7.0.0",
2023
+ "get-stream": "^5.0.0",
2024
+ "human-signals": "^1.1.1",
2025
+ "is-stream": "^2.0.0",
2026
+ "merge-stream": "^2.0.0",
2027
+ "npm-run-path": "^4.0.0",
2028
+ "onetime": "^5.1.0",
2029
+ "signal-exit": "^3.0.2",
2030
+ "strip-final-newline": "^2.0.0"
2031
+ }
1892
2032
  }
1893
2033
  }
1894
2034
  },
1895
2035
  "listr2": {
1896
- "version": "2.6.2",
1897
- "resolved": "https://registry.npmjs.org/listr2/-/listr2-2.6.2.tgz",
1898
- "integrity": "sha512-6x6pKEMs8DSIpA/tixiYY2m/GcbgMplMVmhQAaLFxEtNSKLeWTGjtmU57xvv6QCm2XcqzyNXL/cTSVf4IChCRA==",
2036
+ "version": "3.2.2",
2037
+ "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.2.2.tgz",
2038
+ "integrity": "sha512-AajqcZEUikF2ioph6PfH3dIuxJclhr3i3kHgTOP0xeXdWQohrvJAAmqVcV43/GI987HFY/vzT73jYXoa4esDHg==",
1899
2039
  "dev": true,
1900
2040
  "requires": {
1901
2041
  "chalk": "^4.1.0",
@@ -1904,7 +2044,7 @@
1904
2044
  "indent-string": "^4.0.0",
1905
2045
  "log-update": "^4.0.0",
1906
2046
  "p-map": "^4.0.0",
1907
- "rxjs": "^6.6.2",
2047
+ "rxjs": "^6.6.3",
1908
2048
  "through": "^2.3.8"
1909
2049
  }
1910
2050
  },
@@ -2057,12 +2197,6 @@
2057
2197
  "yallist": "^4.0.0"
2058
2198
  }
2059
2199
  },
2060
- "macos-release": {
2061
- "version": "2.4.1",
2062
- "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.4.1.tgz",
2063
- "integrity": "sha512-H/QHeBIN1fIGJX517pvK8IEK53yQOW7YcEI55oYtgjDdoCQQz7eJS94qt5kNrscReEyuD/JcdFCm2XBEcGOITg==",
2064
- "dev": true
2065
- },
2066
2200
  "map-obj": {
2067
2201
  "version": "1.0.1",
2068
2202
  "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
@@ -2070,9 +2204,9 @@
2070
2204
  "dev": true
2071
2205
  },
2072
2206
  "marked": {
2073
- "version": "1.2.0",
2074
- "resolved": "https://registry.npmjs.org/marked/-/marked-1.2.0.tgz",
2075
- "integrity": "sha512-tiRxakgbNPBr301ihe/785NntvYyhxlqcL3YaC8CaxJQh7kiaEtrN9B/eK2I2943Yjkh5gw25chYFDQhOMCwMA==",
2207
+ "version": "1.2.5",
2208
+ "resolved": "https://registry.npmjs.org/marked/-/marked-1.2.5.tgz",
2209
+ "integrity": "sha512-2AlqgYnVPOc9WDyWu7S5DJaEZsfk6dNh/neatQ3IHUW4QLutM/VPSH9lG7bif+XjFWc9K9XR3QvR+fXuECmfdA==",
2076
2210
  "dev": true
2077
2211
  },
2078
2212
  "marked-terminal": {
@@ -2164,6 +2298,15 @@
2164
2298
  "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
2165
2299
  "dev": true
2166
2300
  },
2301
+ "minimatch": {
2302
+ "version": "3.0.4",
2303
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
2304
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
2305
+ "dev": true,
2306
+ "requires": {
2307
+ "brace-expansion": "^1.1.7"
2308
+ }
2309
+ },
2167
2310
  "minimist": {
2168
2311
  "version": "1.2.5",
2169
2312
  "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
@@ -2205,12 +2348,6 @@
2205
2348
  "integrity": "sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=",
2206
2349
  "dev": true
2207
2350
  },
2208
- "nice-try": {
2209
- "version": "1.0.5",
2210
- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
2211
- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
2212
- "dev": true
2213
- },
2214
2351
  "node-emoji": {
2215
2352
  "version": "1.10.0",
2216
2353
  "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz",
@@ -5800,20 +5937,10 @@
5800
5937
  "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==",
5801
5938
  "dev": true
5802
5939
  },
5803
- "os-name": {
5804
- "version": "3.1.0",
5805
- "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz",
5806
- "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==",
5807
- "dev": true,
5808
- "requires": {
5809
- "macos-release": "^2.2.0",
5810
- "windows-release": "^3.1.0"
5811
- }
5812
- },
5813
5940
  "p-each-series": {
5814
- "version": "2.1.0",
5815
- "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz",
5816
- "integrity": "sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==",
5941
+ "version": "2.2.0",
5942
+ "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz",
5943
+ "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==",
5817
5944
  "dev": true
5818
5945
  },
5819
5946
  "p-filter": {
@@ -5833,12 +5960,6 @@
5833
5960
  }
5834
5961
  }
5835
5962
  },
5836
- "p-finally": {
5837
- "version": "1.0.0",
5838
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
5839
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
5840
- "dev": true
5841
- },
5842
5963
  "p-is-promise": {
5843
5964
  "version": "3.0.0",
5844
5965
  "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz",
@@ -5921,6 +6042,12 @@
5921
6042
  "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
5922
6043
  "dev": true
5923
6044
  },
6045
+ "path-is-absolute": {
6046
+ "version": "1.0.1",
6047
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
6048
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
6049
+ "dev": true
6050
+ },
5924
6051
  "path-key": {
5925
6052
  "version": "3.1.1",
5926
6053
  "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
@@ -6146,9 +6273,9 @@
6146
6273
  "dev": true
6147
6274
  },
6148
6275
  "registry-auth-token": {
6149
- "version": "4.2.0",
6150
- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.0.tgz",
6151
- "integrity": "sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==",
6276
+ "version": "4.2.1",
6277
+ "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz",
6278
+ "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==",
6152
6279
  "dev": true,
6153
6280
  "requires": {
6154
6281
  "rc": "^1.2.8"
@@ -6212,10 +6339,19 @@
6212
6339
  "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
6213
6340
  "dev": true
6214
6341
  },
6342
+ "rimraf": {
6343
+ "version": "3.0.2",
6344
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
6345
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
6346
+ "dev": true,
6347
+ "requires": {
6348
+ "glob": "^7.1.3"
6349
+ }
6350
+ },
6215
6351
  "run-parallel": {
6216
- "version": "1.1.9",
6217
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz",
6218
- "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==",
6352
+ "version": "1.1.10",
6353
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz",
6354
+ "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==",
6219
6355
  "dev": true
6220
6356
  },
6221
6357
  "rxjs": {
@@ -6234,9 +6370,9 @@
6234
6370
  "dev": true
6235
6371
  },
6236
6372
  "semantic-release": {
6237
- "version": "17.2.1",
6238
- "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-17.2.1.tgz",
6239
- "integrity": "sha512-+xbLWsT9NoibeMMJw4te0pbY4q/Z1gt/vzhB0z9RRNGVyqCgQiK5NUJ11eW6etSyPZ9QFeAMnqO2dzscWUTy2w==",
6373
+ "version": "17.2.4",
6374
+ "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-17.2.4.tgz",
6375
+ "integrity": "sha512-NcYFT+duzg+eE57s9lZYRRkxzyiXGvwFdPvS4U+8TYo+vb0UZpQuFi63hFgoLAOF4lo5yj2v79GsG9hDC66EQw==",
6240
6376
  "dev": true,
6241
6377
  "requires": {
6242
6378
  "@semantic-release/commit-analyzer": "^8.0.0",
@@ -6270,9 +6406,9 @@
6270
6406
  },
6271
6407
  "dependencies": {
6272
6408
  "hosted-git-info": {
6273
- "version": "3.0.6",
6274
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.6.tgz",
6275
- "integrity": "sha512-VRvqVD5T6t9HdmNDWTwbi8H/EC722MemAhOSP5QvYAXpDAY0Nhu2I/i+bXsktu4sU5LVHSh/wmXtVU8bDtjedQ==",
6409
+ "version": "3.0.7",
6410
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz",
6411
+ "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==",
6276
6412
  "dev": true,
6277
6413
  "requires": {
6278
6414
  "lru-cache": "^6.0.0"
@@ -6631,12 +6767,6 @@
6631
6767
  "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
6632
6768
  "dev": true
6633
6769
  },
6634
- "strip-eof": {
6635
- "version": "1.0.0",
6636
- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
6637
- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
6638
- "dev": true
6639
- },
6640
6770
  "strip-final-newline": {
6641
6771
  "version": "2.0.0",
6642
6772
  "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
@@ -6684,21 +6814,22 @@
6684
6814
  "dev": true
6685
6815
  },
6686
6816
  "tempy": {
6687
- "version": "0.5.0",
6688
- "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.5.0.tgz",
6689
- "integrity": "sha512-VEY96x7gbIRfsxqsafy2l5yVxxp3PhwAGoWMyC2D2Zt5DmEv+2tGiPOrquNRpf21hhGnKLVEsuqleqiZmKG/qw==",
6817
+ "version": "1.0.0",
6818
+ "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.0.tgz",
6819
+ "integrity": "sha512-eLXG5B1G0mRPHmgH2WydPl5v4jH35qEn3y/rA/aahKhIa91Pn119SsU7n7v/433gtT9ONzC8ISvNHIh2JSTm0w==",
6690
6820
  "dev": true,
6691
6821
  "requires": {
6822
+ "del": "^6.0.0",
6692
6823
  "is-stream": "^2.0.0",
6693
6824
  "temp-dir": "^2.0.0",
6694
- "type-fest": "^0.12.0",
6825
+ "type-fest": "^0.16.0",
6695
6826
  "unique-string": "^2.0.0"
6696
6827
  },
6697
6828
  "dependencies": {
6698
6829
  "type-fest": {
6699
- "version": "0.12.0",
6700
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.12.0.tgz",
6701
- "integrity": "sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==",
6830
+ "version": "0.16.0",
6831
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz",
6832
+ "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==",
6702
6833
  "dev": true
6703
6834
  }
6704
6835
  }
@@ -6765,9 +6896,9 @@
6765
6896
  "dev": true
6766
6897
  },
6767
6898
  "uglify-js": {
6768
- "version": "3.11.2",
6769
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.2.tgz",
6770
- "integrity": "sha512-G440NU6fewtnQftSgqRV1r2A5ChKbU1gqFCJ7I8S7MPpY/eZZfLGefaY6gUZYiWebMaO+txgiQ1ZyLDuNWJulg==",
6899
+ "version": "3.11.6",
6900
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.6.tgz",
6901
+ "integrity": "sha512-oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g==",
6771
6902
  "dev": true,
6772
6903
  "optional": true
6773
6904
  },
@@ -6781,13 +6912,10 @@
6781
6912
  }
6782
6913
  },
6783
6914
  "universal-user-agent": {
6784
- "version": "5.0.0",
6785
- "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-5.0.0.tgz",
6786
- "integrity": "sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==",
6787
- "dev": true,
6788
- "requires": {
6789
- "os-name": "^3.1.0"
6790
- }
6915
+ "version": "6.0.0",
6916
+ "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz",
6917
+ "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==",
6918
+ "dev": true
6791
6919
  },
6792
6920
  "universalify": {
6793
6921
  "version": "1.0.0",
@@ -6838,99 +6966,6 @@
6838
6966
  "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=",
6839
6967
  "dev": true
6840
6968
  },
6841
- "windows-release": {
6842
- "version": "3.3.3",
6843
- "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.3.3.tgz",
6844
- "integrity": "sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==",
6845
- "dev": true,
6846
- "requires": {
6847
- "execa": "^1.0.0"
6848
- },
6849
- "dependencies": {
6850
- "cross-spawn": {
6851
- "version": "6.0.5",
6852
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
6853
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
6854
- "dev": true,
6855
- "requires": {
6856
- "nice-try": "^1.0.4",
6857
- "path-key": "^2.0.1",
6858
- "semver": "^5.5.0",
6859
- "shebang-command": "^1.2.0",
6860
- "which": "^1.2.9"
6861
- }
6862
- },
6863
- "execa": {
6864
- "version": "1.0.0",
6865
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
6866
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
6867
- "dev": true,
6868
- "requires": {
6869
- "cross-spawn": "^6.0.0",
6870
- "get-stream": "^4.0.0",
6871
- "is-stream": "^1.1.0",
6872
- "npm-run-path": "^2.0.0",
6873
- "p-finally": "^1.0.0",
6874
- "signal-exit": "^3.0.0",
6875
- "strip-eof": "^1.0.0"
6876
- }
6877
- },
6878
- "get-stream": {
6879
- "version": "4.1.0",
6880
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
6881
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
6882
- "dev": true,
6883
- "requires": {
6884
- "pump": "^3.0.0"
6885
- }
6886
- },
6887
- "is-stream": {
6888
- "version": "1.1.0",
6889
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
6890
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
6891
- "dev": true
6892
- },
6893
- "npm-run-path": {
6894
- "version": "2.0.2",
6895
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
6896
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
6897
- "dev": true,
6898
- "requires": {
6899
- "path-key": "^2.0.0"
6900
- }
6901
- },
6902
- "path-key": {
6903
- "version": "2.0.1",
6904
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
6905
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
6906
- "dev": true
6907
- },
6908
- "shebang-command": {
6909
- "version": "1.2.0",
6910
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
6911
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
6912
- "dev": true,
6913
- "requires": {
6914
- "shebang-regex": "^1.0.0"
6915
- }
6916
- },
6917
- "shebang-regex": {
6918
- "version": "1.0.0",
6919
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
6920
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
6921
- "dev": true
6922
- },
6923
- "which": {
6924
- "version": "1.3.1",
6925
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
6926
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
6927
- "dev": true,
6928
- "requires": {
6929
- "isexe": "^2.0.0"
6930
- }
6931
- }
6932
- }
6933
- },
6934
6969
  "wordwrap": {
6935
6970
  "version": "1.0.0",
6936
6971
  "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",