scanoss 0.2.26 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/.github/workflows/reuse.yml +15 -0
  2. package/.github/workflows/scanoss.yml +24 -0
  3. package/.gitignore +0 -1
  4. package/.idea/.gitignore +5 -0
  5. package/.idea/codeStyles/Project.xml +61 -0
  6. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  7. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/scanoss.js.iml +12 -0
  10. package/.idea/vcs.xml +6 -0
  11. package/.idea/workspace.xml +366 -0
  12. package/.nyc_output/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
  13. package/.nyc_output/processinfo/a25d3ac4-ee71-4c5e-926e-3a17714555cd.json +1 -0
  14. package/.nyc_output/processinfo/index.json +1 -0
  15. package/.reuse/dep5 +16 -0
  16. package/LICENSES/CC0-1.0.txt +121 -0
  17. package/LICENSES/MIT.txt +9 -0
  18. package/README.md +9 -0
  19. package/build/main/bin/cli-bin.js +5 -3
  20. package/build/main/commands/dep.js +1 -2
  21. package/build/main/commands/fingerprint.js +20 -12
  22. package/build/main/commands/helpers.js +1 -2
  23. package/build/main/commands/scan.js +7 -2
  24. package/build/main/index.js +1 -2
  25. package/build/main/lib/dependencies/DependencyScanner.d.ts +1 -1
  26. package/build/main/lib/dependencies/DependencyScanner.js +23 -12
  27. package/build/main/lib/dependencies/DependencyScannerCfg.js +1 -2
  28. package/build/main/lib/dependencies/DependencyTypes.js +0 -1
  29. package/build/main/lib/dependencies/LocalDependency/DependencyTypes.js +0 -1
  30. package/build/main/lib/dependencies/LocalDependency/LocalDependency.js +3 -2
  31. package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
  32. package/build/main/lib/dependencies/LocalDependency/parsers/golangParser.js +50 -16
  33. package/build/main/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -15
  34. package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
  35. package/build/main/lib/dependencies/LocalDependency/parsers/npmParser.js +146 -10
  36. package/build/main/lib/dependencies/LocalDependency/parsers/pyParser.js +1 -2
  37. package/build/main/lib/dependencies/LocalDependency/parsers/rubyParser.js +1 -2
  38. package/build/main/lib/dependencies/LocalDependency/parsers/utils.js +1 -2
  39. package/build/main/lib/filters/defaultFilter.js +1 -2
  40. package/build/main/lib/filters/filtering.js +1 -2
  41. package/build/main/lib/grpc/GrpcDependencyService.js +1 -2
  42. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
  43. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
  44. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
  45. package/build/main/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
  46. package/build/main/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
  47. package/build/main/lib/scanner/Dispatcher/DispatchableItem.js +30 -10
  48. package/build/main/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
  49. package/build/main/lib/scanner/Dispatcher/Dispatcher.js +10 -15
  50. package/build/main/lib/scanner/Dispatcher/DispatcherResponse.js +1 -2
  51. package/build/main/lib/scanner/Dispatcher/GlobalControllerAborter.js +1 -2
  52. package/build/main/lib/scanner/Scannable/ScannableItem.js +1 -2
  53. package/build/main/lib/scanner/Scanner.js +13 -9
  54. package/build/main/lib/scanner/ScannerCfg.js +2 -3
  55. package/build/main/lib/scanner/ScannerQueue.d.ts +3 -0
  56. package/build/main/lib/scanner/ScannerQueue.js +8 -0
  57. package/build/main/lib/scanner/ScannerTypes.d.ts +9 -2
  58. package/build/main/lib/scanner/ScannerTypes.js +8 -3
  59. package/build/main/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
  60. package/build/main/lib/scanner/WfpProvider/FingerprintPackage.js +31 -0
  61. package/build/main/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -21
  62. package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
  63. package/build/main/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
  64. package/build/main/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
  65. package/build/main/lib/scanner/WfpProvider/WfpProvider.js +6 -7
  66. package/build/main/lib/scanner/WfpProvider/WfpSplitter/WfpSplitter.js +1 -2
  67. package/build/main/lib/tree/File.js +1 -2
  68. package/build/main/lib/tree/Folder.js +1 -2
  69. package/build/main/lib/tree/Node.js +1 -2
  70. package/build/main/lib/tree/Tree.js +1 -2
  71. package/build/module/bin/cli-bin.js +5 -2
  72. package/build/module/commands/fingerprint.js +25 -16
  73. package/build/module/commands/scan.js +8 -2
  74. package/build/module/lib/dependencies/DependencyScanner.d.ts +1 -1
  75. package/build/module/lib/dependencies/DependencyScanner.js +23 -11
  76. package/build/module/lib/dependencies/LocalDependency/LocalDependency.js +5 -3
  77. package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.d.ts +1 -0
  78. package/build/module/lib/dependencies/LocalDependency/parsers/golangParser.js +47 -14
  79. package/build/module/lib/dependencies/LocalDependency/parsers/mavenParser.js +130 -14
  80. package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.d.ts +10 -0
  81. package/build/module/lib/dependencies/LocalDependency/parsers/npmParser.js +140 -8
  82. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +62 -0
  83. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.js +128 -0
  84. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.d.ts +1 -0
  85. package/build/module/lib/grpc/scanoss/api/components/v2/scanoss-components_pb.js +1403 -0
  86. package/build/module/lib/scanner/Dispatcher/DispatchableItem.d.ts +14 -5
  87. package/build/module/lib/scanner/Dispatcher/DispatchableItem.js +32 -10
  88. package/build/module/lib/scanner/Dispatcher/Dispatcher.d.ts +2 -2
  89. package/build/module/lib/scanner/Dispatcher/Dispatcher.js +10 -14
  90. package/build/module/lib/scanner/Scanner.js +12 -8
  91. package/build/module/lib/scanner/ScannerCfg.js +2 -2
  92. package/build/module/lib/scanner/ScannerQueue.d.ts +3 -0
  93. package/build/module/lib/scanner/ScannerQueue.js +4 -0
  94. package/build/module/lib/scanner/ScannerTypes.d.ts +9 -2
  95. package/build/module/lib/scanner/ScannerTypes.js +7 -1
  96. package/build/module/lib/scanner/WfpProvider/FingerprintPackage.d.ts +9 -0
  97. package/build/module/lib/scanner/WfpProvider/FingerprintPackage.js +30 -0
  98. package/build/module/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.js +178 -20
  99. package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.d.ts +3 -0
  100. package/build/module/lib/scanner/WfpProvider/WfpCalculator/Winnower.js +211 -0
  101. package/build/module/lib/scanner/WfpProvider/WfpProvider.d.ts +2 -2
  102. package/build/module/lib/scanner/WfpProvider/WfpProvider.js +6 -6
  103. package/build/tsconfig.module.tsbuildinfo +1 -1
  104. package/build/tsconfig.tsbuildinfo +1 -1
  105. package/package.json +6 -17
  106. package/src/bin/cli-bin.ts +4 -1
  107. package/src/commands/fingerprint.ts +26 -17
  108. package/src/commands/scan.ts +16 -3
  109. package/src/lib/dependencies/DependencyScanner.ts +20 -13
  110. package/src/lib/dependencies/LocalDependency/LocalDependency.ts +8 -2
  111. package/src/lib/dependencies/LocalDependency/parsers/golangParser.ts +67 -15
  112. package/src/lib/dependencies/LocalDependency/parsers/mavenParser.ts +143 -16
  113. package/src/lib/dependencies/LocalDependency/parsers/npmParser.ts +182 -7
  114. package/src/lib/scanner/Dispatcher/DispatchableItem.ts +45 -11
  115. package/src/lib/scanner/Dispatcher/Dispatcher.ts +11 -14
  116. package/src/lib/scanner/Scanner.ts +17 -13
  117. package/src/lib/scanner/ScannerCfg.ts +2 -1
  118. package/src/lib/scanner/ScannerTypes.ts +10 -2
  119. package/src/lib/scanner/WfpProvider/{FingerprintPacket.ts → FingerprintPackage.ts} +4 -14
  120. package/src/lib/scanner/WfpProvider/WfpCalculator/WfpCalculator.ts +177 -20
  121. package/src/lib/scanner/WfpProvider/WfpProvider.ts +5 -5
  122. package/tests/WfpCalculator.spec.ts +103 -0
  123. package/tests/data/dependencies/Gemfile/1/Gemfile +6 -0
  124. package/tests/data/dependencies/Gemfile/1/Gemfile~ +0 -0
  125. package/tests/data/dependencies/Gemfile/2/Gemfile +3 -0
  126. package/tests/data/dependencies/Gemfile/2/Gemfile~ +6 -0
  127. package/tests/data/dependencies/Gemfile/3/Gemfile +7 -0
  128. package/tests/data/dependencies/Gemfile/3/Gemfile~ +6 -0
  129. package/tests/data/dependencies/Gemfile/4/Gemfile +31 -0
  130. package/tests/data/dependencies/Gemfile/4/Gemfile~ +7 -0
  131. package/tests/data/dependencies/Gemfile.lock/1/Gemfile.lock +180 -0
  132. package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock +60 -0
  133. package/tests/data/dependencies/Gemfile.lock/2/Gemfile.lock~ +0 -0
  134. package/tests/data/dependencies/go.sum/1/go.sum +119 -0
  135. package/tests/data/dependencies/go.sum/depJSON.sh +23 -0
  136. package/tests/data/dependencies/package-lock/1/package-lock.json +715 -0
  137. package/tests/data/dependencies/package-lock/2/package-lock.json +32069 -0
  138. package/tests/data/dependencies/package-lock/3/package-lock.json +9013 -0
  139. package/tests/data/dependencies/pom.xml/1/pom.xml +162 -0
  140. package/tests/data/dependencies/yarn-lock/generate_expected_output.sh +4 -0
  141. package/tests/data/dependencies/yarn-lock/v1/yarn.lock +50 -0
  142. package/tests/data/dependencies/yarn-lock/v1/yarn.lock-expected +13 -0
  143. package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock +27 -0
  144. package/tests/data/dependencies/yarn-lock/v1-complex/yarn.lock-expected +8 -0
  145. package/tests/data/dependencies/yarn-lock/v1-complex2/yarn.lock +220 -0
  146. package/tests/data/dependencies/yarn-lock/v2/yarn.lock +31 -0
  147. package/tests/data/dependencies/yarn-lock/v2/yarn.lock-expected +57 -0
  148. package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock +11 -0
  149. package/tests/data/dependencies/yarn-lock/v2-local/yarn.lock-expected +27204 -0
  150. package/tests/data/scanner/file1.c +41 -0
  151. package/tests/data/scanner/file2.go +87 -0
  152. package/tests/dependencies/golangParser.goModParser.specs.ts +146 -0
  153. package/tests/dependencies/npmParser.spec.ts +133 -0
  154. package/tsconfig.json +4 -3
  155. package/yarn.lock +4596 -5321
  156. package/examples/defaultFilter.json +0 -203
  157. package/package-lock.json +0 -18588
  158. package/src/lib/scanner/Winnower/WinnowerExtractor.ts +0 -37
@@ -0,0 +1,715 @@
1
+ {
2
+ "name": "eliminar",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "eliminar",
9
+ "version": "1.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "cowsay": "^1.5.0"
13
+ }
14
+ },
15
+ "node_modules/ansi-regex": {
16
+ "version": "3.0.1",
17
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
18
+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
19
+ "engines": {
20
+ "node": ">=4"
21
+ }
22
+ },
23
+ "node_modules/ansi-styles": {
24
+ "version": "4.3.0",
25
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
26
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
27
+ "dependencies": {
28
+ "color-convert": "^2.0.1"
29
+ },
30
+ "engines": {
31
+ "node": ">=8"
32
+ },
33
+ "funding": {
34
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
35
+ }
36
+ },
37
+ "node_modules/camelcase": {
38
+ "version": "5.3.1",
39
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
40
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
41
+ "engines": {
42
+ "node": ">=6"
43
+ }
44
+ },
45
+ "node_modules/cliui": {
46
+ "version": "6.0.0",
47
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
48
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
49
+ "dependencies": {
50
+ "string-width": "^4.2.0",
51
+ "strip-ansi": "^6.0.0",
52
+ "wrap-ansi": "^6.2.0"
53
+ }
54
+ },
55
+ "node_modules/cliui/node_modules/ansi-regex": {
56
+ "version": "5.0.1",
57
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
58
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
59
+ "engines": {
60
+ "node": ">=8"
61
+ }
62
+ },
63
+ "node_modules/cliui/node_modules/is-fullwidth-code-point": {
64
+ "version": "3.0.0",
65
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
66
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
67
+ "engines": {
68
+ "node": ">=8"
69
+ }
70
+ },
71
+ "node_modules/cliui/node_modules/string-width": {
72
+ "version": "4.2.3",
73
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
74
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
75
+ "dependencies": {
76
+ "emoji-regex": "^8.0.0",
77
+ "is-fullwidth-code-point": "^3.0.0",
78
+ "strip-ansi": "^6.0.1"
79
+ },
80
+ "engines": {
81
+ "node": ">=8"
82
+ }
83
+ },
84
+ "node_modules/cliui/node_modules/strip-ansi": {
85
+ "version": "6.0.1",
86
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
87
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
88
+ "dependencies": {
89
+ "ansi-regex": "^5.0.1"
90
+ },
91
+ "engines": {
92
+ "node": ">=8"
93
+ }
94
+ },
95
+ "node_modules/color-convert": {
96
+ "version": "2.0.1",
97
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
98
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
99
+ "dependencies": {
100
+ "color-name": "~1.1.4"
101
+ },
102
+ "engines": {
103
+ "node": ">=7.0.0"
104
+ }
105
+ },
106
+ "node_modules/color-name": {
107
+ "version": "1.1.4",
108
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
109
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
110
+ },
111
+ "node_modules/cowsay": {
112
+ "version": "1.5.0",
113
+ "resolved": "https://registry.npmjs.org/cowsay/-/cowsay-1.5.0.tgz",
114
+ "integrity": "sha512-8Ipzr54Z8zROr/62C8f0PdhQcDusS05gKTS87xxdji8VbWefWly0k8BwGK7+VqamOrkv3eGsCkPtvlHzrhWsCA==",
115
+ "dependencies": {
116
+ "get-stdin": "8.0.0",
117
+ "string-width": "~2.1.1",
118
+ "strip-final-newline": "2.0.0",
119
+ "yargs": "15.4.1"
120
+ },
121
+ "bin": {
122
+ "cowsay": "cli.js",
123
+ "cowthink": "cli.js"
124
+ },
125
+ "engines": {
126
+ "node": ">= 4"
127
+ }
128
+ },
129
+ "node_modules/decamelize": {
130
+ "version": "1.2.0",
131
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
132
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
133
+ "engines": {
134
+ "node": ">=0.10.0"
135
+ }
136
+ },
137
+ "node_modules/emoji-regex": {
138
+ "version": "8.0.0",
139
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
140
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
141
+ },
142
+ "node_modules/find-up": {
143
+ "version": "4.1.0",
144
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
145
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
146
+ "dependencies": {
147
+ "locate-path": "^5.0.0",
148
+ "path-exists": "^4.0.0"
149
+ },
150
+ "engines": {
151
+ "node": ">=8"
152
+ }
153
+ },
154
+ "node_modules/get-caller-file": {
155
+ "version": "2.0.5",
156
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
157
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
158
+ "engines": {
159
+ "node": "6.* || 8.* || >= 10.*"
160
+ }
161
+ },
162
+ "node_modules/get-stdin": {
163
+ "version": "8.0.0",
164
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
165
+ "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
166
+ "engines": {
167
+ "node": ">=10"
168
+ },
169
+ "funding": {
170
+ "url": "https://github.com/sponsors/sindresorhus"
171
+ }
172
+ },
173
+ "node_modules/is-fullwidth-code-point": {
174
+ "version": "2.0.0",
175
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
176
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
177
+ "engines": {
178
+ "node": ">=4"
179
+ }
180
+ },
181
+ "node_modules/locate-path": {
182
+ "version": "5.0.0",
183
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
184
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
185
+ "dependencies": {
186
+ "p-locate": "^4.1.0"
187
+ },
188
+ "engines": {
189
+ "node": ">=8"
190
+ }
191
+ },
192
+ "node_modules/p-limit": {
193
+ "version": "2.3.0",
194
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
195
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
196
+ "dependencies": {
197
+ "p-try": "^2.0.0"
198
+ },
199
+ "engines": {
200
+ "node": ">=6"
201
+ },
202
+ "funding": {
203
+ "url": "https://github.com/sponsors/sindresorhus"
204
+ }
205
+ },
206
+ "node_modules/p-locate": {
207
+ "version": "4.1.0",
208
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
209
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
210
+ "dependencies": {
211
+ "p-limit": "^2.2.0"
212
+ },
213
+ "engines": {
214
+ "node": ">=8"
215
+ }
216
+ },
217
+ "node_modules/p-try": {
218
+ "version": "2.2.0",
219
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
220
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
221
+ "engines": {
222
+ "node": ">=6"
223
+ }
224
+ },
225
+ "node_modules/path-exists": {
226
+ "version": "4.0.0",
227
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
228
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
229
+ "engines": {
230
+ "node": ">=8"
231
+ }
232
+ },
233
+ "node_modules/require-directory": {
234
+ "version": "2.1.1",
235
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
236
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
237
+ "engines": {
238
+ "node": ">=0.10.0"
239
+ }
240
+ },
241
+ "node_modules/require-main-filename": {
242
+ "version": "2.0.0",
243
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
244
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
245
+ },
246
+ "node_modules/set-blocking": {
247
+ "version": "2.0.0",
248
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
249
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
250
+ },
251
+ "node_modules/string-width": {
252
+ "version": "2.1.1",
253
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
254
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
255
+ "dependencies": {
256
+ "is-fullwidth-code-point": "^2.0.0",
257
+ "strip-ansi": "^4.0.0"
258
+ },
259
+ "engines": {
260
+ "node": ">=4"
261
+ }
262
+ },
263
+ "node_modules/strip-ansi": {
264
+ "version": "4.0.0",
265
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
266
+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
267
+ "dependencies": {
268
+ "ansi-regex": "^3.0.0"
269
+ },
270
+ "engines": {
271
+ "node": ">=4"
272
+ }
273
+ },
274
+ "node_modules/strip-final-newline": {
275
+ "version": "2.0.0",
276
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
277
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
278
+ "engines": {
279
+ "node": ">=6"
280
+ }
281
+ },
282
+ "node_modules/which-module": {
283
+ "version": "2.0.0",
284
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
285
+ "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="
286
+ },
287
+ "node_modules/wrap-ansi": {
288
+ "version": "6.2.0",
289
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
290
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
291
+ "dependencies": {
292
+ "ansi-styles": "^4.0.0",
293
+ "string-width": "^4.1.0",
294
+ "strip-ansi": "^6.0.0"
295
+ },
296
+ "engines": {
297
+ "node": ">=8"
298
+ }
299
+ },
300
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
301
+ "version": "5.0.1",
302
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
303
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
304
+ "engines": {
305
+ "node": ">=8"
306
+ }
307
+ },
308
+ "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
309
+ "version": "3.0.0",
310
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
311
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
312
+ "engines": {
313
+ "node": ">=8"
314
+ }
315
+ },
316
+ "node_modules/wrap-ansi/node_modules/string-width": {
317
+ "version": "4.2.3",
318
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
319
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
320
+ "dependencies": {
321
+ "emoji-regex": "^8.0.0",
322
+ "is-fullwidth-code-point": "^3.0.0",
323
+ "strip-ansi": "^6.0.1"
324
+ },
325
+ "engines": {
326
+ "node": ">=8"
327
+ }
328
+ },
329
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
330
+ "version": "6.0.1",
331
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
332
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
333
+ "dependencies": {
334
+ "ansi-regex": "^5.0.1"
335
+ },
336
+ "engines": {
337
+ "node": ">=8"
338
+ }
339
+ },
340
+ "node_modules/y18n": {
341
+ "version": "4.0.3",
342
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
343
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
344
+ },
345
+ "node_modules/yargs": {
346
+ "version": "15.4.1",
347
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
348
+ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
349
+ "dependencies": {
350
+ "cliui": "^6.0.0",
351
+ "decamelize": "^1.2.0",
352
+ "find-up": "^4.1.0",
353
+ "get-caller-file": "^2.0.1",
354
+ "require-directory": "^2.1.1",
355
+ "require-main-filename": "^2.0.0",
356
+ "set-blocking": "^2.0.0",
357
+ "string-width": "^4.2.0",
358
+ "which-module": "^2.0.0",
359
+ "y18n": "^4.0.0",
360
+ "yargs-parser": "^18.1.2"
361
+ },
362
+ "engines": {
363
+ "node": ">=8"
364
+ }
365
+ },
366
+ "node_modules/yargs-parser": {
367
+ "version": "18.1.3",
368
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
369
+ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
370
+ "dependencies": {
371
+ "camelcase": "^5.0.0",
372
+ "decamelize": "^1.2.0"
373
+ },
374
+ "engines": {
375
+ "node": ">=6"
376
+ }
377
+ },
378
+ "node_modules/yargs/node_modules/ansi-regex": {
379
+ "version": "5.0.1",
380
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
381
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
382
+ "engines": {
383
+ "node": ">=8"
384
+ }
385
+ },
386
+ "node_modules/yargs/node_modules/is-fullwidth-code-point": {
387
+ "version": "3.0.0",
388
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
389
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
390
+ "engines": {
391
+ "node": ">=8"
392
+ }
393
+ },
394
+ "node_modules/yargs/node_modules/string-width": {
395
+ "version": "4.2.3",
396
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
397
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
398
+ "dependencies": {
399
+ "emoji-regex": "^8.0.0",
400
+ "is-fullwidth-code-point": "^3.0.0",
401
+ "strip-ansi": "^6.0.1"
402
+ },
403
+ "engines": {
404
+ "node": ">=8"
405
+ }
406
+ },
407
+ "node_modules/yargs/node_modules/strip-ansi": {
408
+ "version": "6.0.1",
409
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
410
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
411
+ "dependencies": {
412
+ "ansi-regex": "^5.0.1"
413
+ },
414
+ "engines": {
415
+ "node": ">=8"
416
+ }
417
+ }
418
+ },
419
+ "dependencies": {
420
+ "ansi-regex": {
421
+ "version": "3.0.1",
422
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
423
+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
424
+ },
425
+ "ansi-styles": {
426
+ "version": "4.3.0",
427
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
428
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
429
+ "requires": {
430
+ "color-convert": "^2.0.1"
431
+ }
432
+ },
433
+ "camelcase": {
434
+ "version": "5.3.1",
435
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
436
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
437
+ },
438
+ "cliui": {
439
+ "version": "6.0.0",
440
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
441
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
442
+ "requires": {
443
+ "string-width": "^4.2.0",
444
+ "strip-ansi": "^6.0.0",
445
+ "wrap-ansi": "^6.2.0"
446
+ },
447
+ "dependencies": {
448
+ "ansi-regex": {
449
+ "version": "5.0.1",
450
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
451
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
452
+ },
453
+ "is-fullwidth-code-point": {
454
+ "version": "3.0.0",
455
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
456
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
457
+ },
458
+ "string-width": {
459
+ "version": "4.2.3",
460
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
461
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
462
+ "requires": {
463
+ "emoji-regex": "^8.0.0",
464
+ "is-fullwidth-code-point": "^3.0.0",
465
+ "strip-ansi": "^6.0.1"
466
+ }
467
+ },
468
+ "strip-ansi": {
469
+ "version": "6.0.1",
470
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
471
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
472
+ "requires": {
473
+ "ansi-regex": "^5.0.1"
474
+ }
475
+ }
476
+ }
477
+ },
478
+ "color-convert": {
479
+ "version": "2.0.1",
480
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
481
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
482
+ "requires": {
483
+ "color-name": "~1.1.4"
484
+ }
485
+ },
486
+ "color-name": {
487
+ "version": "1.1.4",
488
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
489
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
490
+ },
491
+ "cowsay": {
492
+ "version": "1.5.0",
493
+ "resolved": "https://registry.npmjs.org/cowsay/-/cowsay-1.5.0.tgz",
494
+ "integrity": "sha512-8Ipzr54Z8zROr/62C8f0PdhQcDusS05gKTS87xxdji8VbWefWly0k8BwGK7+VqamOrkv3eGsCkPtvlHzrhWsCA==",
495
+ "requires": {
496
+ "get-stdin": "8.0.0",
497
+ "string-width": "~2.1.1",
498
+ "strip-final-newline": "2.0.0",
499
+ "yargs": "15.4.1"
500
+ }
501
+ },
502
+ "decamelize": {
503
+ "version": "1.2.0",
504
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
505
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="
506
+ },
507
+ "emoji-regex": {
508
+ "version": "8.0.0",
509
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
510
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
511
+ },
512
+ "find-up": {
513
+ "version": "4.1.0",
514
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
515
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
516
+ "requires": {
517
+ "locate-path": "^5.0.0",
518
+ "path-exists": "^4.0.0"
519
+ }
520
+ },
521
+ "get-caller-file": {
522
+ "version": "2.0.5",
523
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
524
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
525
+ },
526
+ "get-stdin": {
527
+ "version": "8.0.0",
528
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
529
+ "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg=="
530
+ },
531
+ "is-fullwidth-code-point": {
532
+ "version": "2.0.0",
533
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
534
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
535
+ },
536
+ "locate-path": {
537
+ "version": "5.0.0",
538
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
539
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
540
+ "requires": {
541
+ "p-locate": "^4.1.0"
542
+ }
543
+ },
544
+ "p-limit": {
545
+ "version": "2.3.0",
546
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
547
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
548
+ "requires": {
549
+ "p-try": "^2.0.0"
550
+ }
551
+ },
552
+ "p-locate": {
553
+ "version": "4.1.0",
554
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
555
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
556
+ "requires": {
557
+ "p-limit": "^2.2.0"
558
+ }
559
+ },
560
+ "p-try": {
561
+ "version": "2.2.0",
562
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
563
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
564
+ },
565
+ "path-exists": {
566
+ "version": "4.0.0",
567
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
568
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
569
+ },
570
+ "require-directory": {
571
+ "version": "2.1.1",
572
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
573
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
574
+ },
575
+ "require-main-filename": {
576
+ "version": "2.0.0",
577
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
578
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
579
+ },
580
+ "set-blocking": {
581
+ "version": "2.0.0",
582
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
583
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
584
+ },
585
+ "string-width": {
586
+ "version": "2.1.1",
587
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
588
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
589
+ "requires": {
590
+ "is-fullwidth-code-point": "^2.0.0",
591
+ "strip-ansi": "^4.0.0"
592
+ }
593
+ },
594
+ "strip-ansi": {
595
+ "version": "4.0.0",
596
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
597
+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
598
+ "requires": {
599
+ "ansi-regex": "^3.0.0"
600
+ }
601
+ },
602
+ "strip-final-newline": {
603
+ "version": "2.0.0",
604
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
605
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
606
+ },
607
+ "which-module": {
608
+ "version": "2.0.0",
609
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
610
+ "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="
611
+ },
612
+ "wrap-ansi": {
613
+ "version": "6.2.0",
614
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
615
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
616
+ "requires": {
617
+ "ansi-styles": "^4.0.0",
618
+ "string-width": "^4.1.0",
619
+ "strip-ansi": "^6.0.0"
620
+ },
621
+ "dependencies": {
622
+ "ansi-regex": {
623
+ "version": "5.0.1",
624
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
625
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
626
+ },
627
+ "is-fullwidth-code-point": {
628
+ "version": "3.0.0",
629
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
630
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
631
+ },
632
+ "string-width": {
633
+ "version": "4.2.3",
634
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
635
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
636
+ "requires": {
637
+ "emoji-regex": "^8.0.0",
638
+ "is-fullwidth-code-point": "^3.0.0",
639
+ "strip-ansi": "^6.0.1"
640
+ }
641
+ },
642
+ "strip-ansi": {
643
+ "version": "6.0.1",
644
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
645
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
646
+ "requires": {
647
+ "ansi-regex": "^5.0.1"
648
+ }
649
+ }
650
+ }
651
+ },
652
+ "y18n": {
653
+ "version": "4.0.3",
654
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
655
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
656
+ },
657
+ "yargs": {
658
+ "version": "15.4.1",
659
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
660
+ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
661
+ "requires": {
662
+ "cliui": "^6.0.0",
663
+ "decamelize": "^1.2.0",
664
+ "find-up": "^4.1.0",
665
+ "get-caller-file": "^2.0.1",
666
+ "require-directory": "^2.1.1",
667
+ "require-main-filename": "^2.0.0",
668
+ "set-blocking": "^2.0.0",
669
+ "string-width": "^4.2.0",
670
+ "which-module": "^2.0.0",
671
+ "y18n": "^4.0.0",
672
+ "yargs-parser": "^18.1.2"
673
+ },
674
+ "dependencies": {
675
+ "ansi-regex": {
676
+ "version": "5.0.1",
677
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
678
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
679
+ },
680
+ "is-fullwidth-code-point": {
681
+ "version": "3.0.0",
682
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
683
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
684
+ },
685
+ "string-width": {
686
+ "version": "4.2.3",
687
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
688
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
689
+ "requires": {
690
+ "emoji-regex": "^8.0.0",
691
+ "is-fullwidth-code-point": "^3.0.0",
692
+ "strip-ansi": "^6.0.1"
693
+ }
694
+ },
695
+ "strip-ansi": {
696
+ "version": "6.0.1",
697
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
698
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
699
+ "requires": {
700
+ "ansi-regex": "^5.0.1"
701
+ }
702
+ }
703
+ }
704
+ },
705
+ "yargs-parser": {
706
+ "version": "18.1.3",
707
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
708
+ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
709
+ "requires": {
710
+ "camelcase": "^5.0.0",
711
+ "decamelize": "^1.2.0"
712
+ }
713
+ }
714
+ }
715
+ }