botium-core 1.12.4 → 1.13.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.
- package/LICENSES-3RDPARTY.txt +390 -225
- package/dist/botium-cjs.js +298 -161
- package/dist/botium-cjs.js.map +1 -1
- package/dist/botium-es.js +298 -161
- package/dist/botium-es.js.map +1 -1
- package/package.json +28 -28
- package/src/BotDriver.js +24 -19
- package/src/Capabilities.js +8 -0
- package/src/Defaults.js +1 -0
- package/src/containers/plugins/SimpleRestContainer.js +42 -8
- package/src/containers/plugins/index.js +1 -1
- package/src/helpers/Utils.js +1 -1
- package/src/scripting/CompilerCsv.js +150 -102
- package/src/scripting/CompilerXlsx.js +2 -2
- package/src/scripting/Convo.js +4 -4
- package/src/scripting/ScriptingProvider.js +6 -2
- package/src/scripting/helper.js +20 -13
- package/src/scripting/logichook/asserter/BaseCountAsserter.js +1 -1
- package/src/scripting/logichook/asserter/ButtonsAsserter.js +4 -2
- package/src/scripting/logichook/asserter/CardsAsserter.js +4 -2
- package/test/compiler/compilercsv.spec.js +363 -12
- package/test/compiler/compilertxt.spec.js +13 -0
- package/test/compiler/convos/csv/utterances_liveperson.csv +108 -0
- package/test/compiler/convos/csv/utterances_multicolumn3col.csv +3 -0
- package/test/compiler/convos/csv/utterances_multicolumn5col.csv +3 -0
- package/test/compiler/convos/csv/utterances_singlecolumn.csv +3 -0
- package/test/compiler/convos/csv/utterances_variable_row_len.csv +3 -0
- package/test/compiler/convos/txt/convos_args_escape.convo.txt +2 -0
- package/test/connectors/simplerest.spec.js +49 -8
- package/test/convo/convos/continuefailing_timeout.convo.txt +16 -0
- package/test/convo/transcript.spec.js +18 -1
- package/test/logichooks/convos/WAITFORBOT_INFINITE.convo.txt +1 -1
- package/test/scripting/asserters/buttonsAsserter.spec.js +47 -0
- package/test/scripting/asserters/cardsAsserter.spec.js +39 -0
- package/test/scripting/scriptingProvider.spec.js +1 -1
- package/test/scripting/txt/decompile.spec.js +24 -0
package/LICENSES-3RDPARTY.txt
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
├─ @ampproject/remapping@2.1.
|
|
1
|
+
├─ @ampproject/remapping@2.1.2
|
|
2
2
|
│ ├─ licenses: Apache-2.0
|
|
3
3
|
│ ├─ repository: https://github.com/ampproject/remapping
|
|
4
4
|
│ ├─ publisher: Justin Ridgewell
|
|
5
5
|
│ ├─ email: jridgewell@google.com
|
|
6
6
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@ampproject/remapping
|
|
7
7
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@ampproject/remapping/LICENSE
|
|
8
|
-
├─ @apidevtools/json-schema-ref-parser@9.0.
|
|
8
|
+
├─ @apidevtools/json-schema-ref-parser@9.0.9
|
|
9
9
|
│ ├─ licenses: MIT
|
|
10
10
|
│ ├─ repository: https://github.com/APIDevTools/json-schema-ref-parser
|
|
11
11
|
│ ├─ publisher: James Messinger
|
|
12
12
|
│ ├─ url: https://jamesmessinger.com
|
|
13
13
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@apidevtools/json-schema-ref-parser
|
|
14
14
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@apidevtools/json-schema-ref-parser/LICENSE
|
|
15
|
-
├─ @apidevtools/openapi-schemas@2.0
|
|
15
|
+
├─ @apidevtools/openapi-schemas@2.1.0
|
|
16
16
|
│ ├─ licenses: MIT
|
|
17
17
|
│ ├─ repository: https://github.com/APIDevTools/openapi-schemas
|
|
18
18
|
│ ├─ publisher: James Messinger
|
|
@@ -47,7 +47,14 @@
|
|
|
47
47
|
│ ├─ url: https://babel.dev/team
|
|
48
48
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/compat-data
|
|
49
49
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/compat-data/LICENSE
|
|
50
|
-
├─ @babel/
|
|
50
|
+
├─ @babel/compat-data@7.17.7
|
|
51
|
+
│ ├─ licenses: MIT
|
|
52
|
+
│ ├─ repository: https://github.com/babel/babel
|
|
53
|
+
│ ├─ publisher: The Babel Team
|
|
54
|
+
│ ├─ url: https://babel.dev/team
|
|
55
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/compat-data
|
|
56
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/compat-data/LICENSE
|
|
57
|
+
├─ @babel/core@7.17.9
|
|
51
58
|
│ ├─ licenses: MIT
|
|
52
59
|
│ ├─ repository: https://github.com/babel/babel
|
|
53
60
|
│ ├─ publisher: The Babel Team
|
|
@@ -61,7 +68,7 @@
|
|
|
61
68
|
│ ├─ url: https://babel.dev/team
|
|
62
69
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/generator
|
|
63
70
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/generator/LICENSE
|
|
64
|
-
├─ @babel/generator@7.17.
|
|
71
|
+
├─ @babel/generator@7.17.9
|
|
65
72
|
│ ├─ licenses: MIT
|
|
66
73
|
│ ├─ repository: https://github.com/babel/babel
|
|
67
74
|
│ ├─ publisher: The Babel Team
|
|
@@ -89,6 +96,13 @@
|
|
|
89
96
|
│ ├─ url: https://babel.dev/team
|
|
90
97
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/helper-compilation-targets
|
|
91
98
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/helper-compilation-targets/LICENSE
|
|
99
|
+
├─ @babel/helper-compilation-targets@7.17.7
|
|
100
|
+
│ ├─ licenses: MIT
|
|
101
|
+
│ ├─ repository: https://github.com/babel/babel
|
|
102
|
+
│ ├─ publisher: The Babel Team
|
|
103
|
+
│ ├─ url: https://babel.dev/team
|
|
104
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets
|
|
105
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/LICENSE
|
|
92
106
|
├─ @babel/helper-create-class-features-plugin@7.16.10
|
|
93
107
|
│ ├─ licenses: MIT
|
|
94
108
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -129,6 +143,13 @@
|
|
|
129
143
|
│ ├─ url: https://babel.dev/team
|
|
130
144
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/helper-function-name
|
|
131
145
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/helper-function-name/LICENSE
|
|
146
|
+
├─ @babel/helper-function-name@7.17.9
|
|
147
|
+
│ ├─ licenses: MIT
|
|
148
|
+
│ ├─ repository: https://github.com/babel/babel
|
|
149
|
+
│ ├─ publisher: The Babel Team
|
|
150
|
+
│ ├─ url: https://babel.dev/team
|
|
151
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-function-name
|
|
152
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-function-name/LICENSE
|
|
132
153
|
├─ @babel/helper-get-function-arity@7.16.7
|
|
133
154
|
│ ├─ licenses: MIT
|
|
134
155
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -171,6 +192,13 @@
|
|
|
171
192
|
│ ├─ url: https://babel.dev/team
|
|
172
193
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/helper-module-transforms
|
|
173
194
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/helper-module-transforms/LICENSE
|
|
195
|
+
├─ @babel/helper-module-transforms@7.17.7
|
|
196
|
+
│ ├─ licenses: MIT
|
|
197
|
+
│ ├─ repository: https://github.com/babel/babel
|
|
198
|
+
│ ├─ publisher: The Babel Team
|
|
199
|
+
│ ├─ url: https://babel.dev/team
|
|
200
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-module-transforms
|
|
201
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/LICENSE
|
|
174
202
|
├─ @babel/helper-optimise-call-expression@7.16.7
|
|
175
203
|
│ ├─ licenses: MIT
|
|
176
204
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -206,6 +234,13 @@
|
|
|
206
234
|
│ ├─ url: https://babel.dev/team
|
|
207
235
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/helper-simple-access
|
|
208
236
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/helper-simple-access/LICENSE
|
|
237
|
+
├─ @babel/helper-simple-access@7.17.7
|
|
238
|
+
│ ├─ licenses: MIT
|
|
239
|
+
│ ├─ repository: https://github.com/babel/babel
|
|
240
|
+
│ ├─ publisher: The Babel Team
|
|
241
|
+
│ ├─ url: https://babel.dev/team
|
|
242
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-simple-access
|
|
243
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/helper-simple-access/LICENSE
|
|
209
244
|
├─ @babel/helper-skip-transparent-expression-wrappers@7.16.0
|
|
210
245
|
│ ├─ licenses: MIT
|
|
211
246
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -241,7 +276,7 @@
|
|
|
241
276
|
│ ├─ url: https://babel.dev/team
|
|
242
277
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/helper-wrap-function
|
|
243
278
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/helper-wrap-function/LICENSE
|
|
244
|
-
├─ @babel/helpers@7.17.
|
|
279
|
+
├─ @babel/helpers@7.17.9
|
|
245
280
|
│ ├─ licenses: MIT
|
|
246
281
|
│ ├─ repository: https://github.com/babel/babel
|
|
247
282
|
│ ├─ publisher: The Babel Team
|
|
@@ -269,13 +304,13 @@
|
|
|
269
304
|
│ ├─ url: https://babel.dev/team
|
|
270
305
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/parser
|
|
271
306
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/parser/LICENSE
|
|
272
|
-
├─ @babel/parser@7.17.
|
|
307
|
+
├─ @babel/parser@7.17.9
|
|
273
308
|
│ ├─ licenses: MIT
|
|
274
309
|
│ ├─ repository: https://github.com/babel/babel
|
|
275
310
|
│ ├─ publisher: The Babel Team
|
|
276
311
|
│ ├─ url: https://babel.dev/team
|
|
277
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/
|
|
278
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/
|
|
312
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/parser
|
|
313
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/parser/LICENSE
|
|
279
314
|
├─ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.7
|
|
280
315
|
│ ├─ licenses: MIT
|
|
281
316
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -728,7 +763,7 @@
|
|
|
728
763
|
│ ├─ url: https://babel.dev/team
|
|
729
764
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/runtime-corejs3
|
|
730
765
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/runtime-corejs3/LICENSE
|
|
731
|
-
├─ @babel/runtime@7.17.
|
|
766
|
+
├─ @babel/runtime@7.17.9
|
|
732
767
|
│ ├─ licenses: MIT
|
|
733
768
|
│ ├─ repository: https://github.com/babel/babel
|
|
734
769
|
│ ├─ publisher: The Babel Team
|
|
@@ -749,13 +784,13 @@
|
|
|
749
784
|
│ ├─ url: https://babel.dev/team
|
|
750
785
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/traverse
|
|
751
786
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/traverse/LICENSE
|
|
752
|
-
├─ @babel/traverse@7.17.
|
|
787
|
+
├─ @babel/traverse@7.17.9
|
|
753
788
|
│ ├─ licenses: MIT
|
|
754
789
|
│ ├─ repository: https://github.com/babel/babel
|
|
755
790
|
│ ├─ publisher: The Babel Team
|
|
756
791
|
│ ├─ url: https://babel.dev/team
|
|
757
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/
|
|
758
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/
|
|
792
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/traverse
|
|
793
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/core/node_modules/@babel/traverse/LICENSE
|
|
759
794
|
├─ @babel/types@7.16.8
|
|
760
795
|
│ ├─ licenses: MIT
|
|
761
796
|
│ ├─ repository: https://github.com/babel/babel
|
|
@@ -777,20 +812,20 @@
|
|
|
777
812
|
│ ├─ email: sebmck@gmail.com
|
|
778
813
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@babel/types
|
|
779
814
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@babel/types/LICENSE
|
|
780
|
-
├─ @eslint/eslintrc@1.1
|
|
815
|
+
├─ @eslint/eslintrc@1.2.1
|
|
781
816
|
│ ├─ licenses: MIT
|
|
782
817
|
│ ├─ repository: https://github.com/eslint/eslintrc
|
|
783
818
|
│ ├─ publisher: Nicholas C. Zakas
|
|
784
819
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@eslint/eslintrc
|
|
785
820
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@eslint/eslintrc/LICENSE
|
|
786
|
-
├─ @gar/promisify@1.1.
|
|
821
|
+
├─ @gar/promisify@1.1.3
|
|
787
822
|
│ ├─ licenses: MIT
|
|
788
823
|
│ ├─ repository: https://github.com/wraithgar/gar-promisify
|
|
789
824
|
│ ├─ publisher: Gar
|
|
790
825
|
│ ├─ email: gar+npm@danger.computer
|
|
791
826
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@gar/promisify
|
|
792
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@gar/promisify/
|
|
793
|
-
├─ @humanwhocodes/config-array@0.9.
|
|
827
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@gar/promisify/LICENSE.md
|
|
828
|
+
├─ @humanwhocodes/config-array@0.9.5
|
|
794
829
|
│ ├─ licenses: Apache-2.0
|
|
795
830
|
│ ├─ repository: https://github.com/humanwhocodes/config-array
|
|
796
831
|
│ ├─ publisher: Nicholas C. Zakas
|
|
@@ -802,6 +837,14 @@
|
|
|
802
837
|
│ ├─ publisher: Nicholas C. Zakas
|
|
803
838
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@humanwhocodes/object-schema
|
|
804
839
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@humanwhocodes/object-schema/LICENSE
|
|
840
|
+
├─ @ioredis/commands@1.1.1
|
|
841
|
+
│ ├─ licenses: MIT
|
|
842
|
+
│ ├─ repository: https://github.com/ioredis/commands
|
|
843
|
+
│ ├─ publisher: Zihua Li
|
|
844
|
+
│ ├─ email: i@zihua.li
|
|
845
|
+
│ ├─ url: http://zihua.li
|
|
846
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@ioredis/commands
|
|
847
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@ioredis/commands/LICENSE
|
|
805
848
|
├─ @istanbuljs/load-nyc-config@1.1.0
|
|
806
849
|
│ ├─ licenses: ISC
|
|
807
850
|
│ ├─ repository: https://github.com/istanbuljs/load-nyc-config
|
|
@@ -826,7 +869,7 @@
|
|
|
826
869
|
│ ├─ publisher: Rich Harris
|
|
827
870
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@jridgewell/sourcemap-codec
|
|
828
871
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@jridgewell/sourcemap-codec/LICENSE
|
|
829
|
-
├─ @jridgewell/trace-mapping@0.3.
|
|
872
|
+
├─ @jridgewell/trace-mapping@0.3.7
|
|
830
873
|
│ ├─ licenses: MIT
|
|
831
874
|
│ ├─ repository: https://github.com/jridgewell/trace-mapping
|
|
832
875
|
│ ├─ publisher: Justin Ridgewell
|
|
@@ -855,17 +898,16 @@
|
|
|
855
898
|
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk
|
|
856
899
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@nodelib/fs.walk
|
|
857
900
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@nodelib/fs.walk/LICENSE
|
|
858
|
-
├─ @npmcli/fs@
|
|
901
|
+
├─ @npmcli/fs@2.1.0
|
|
859
902
|
│ ├─ licenses: ISC
|
|
903
|
+
│ ├─ repository: https://github.com/npm/fs
|
|
860
904
|
│ ├─ publisher: GitHub Inc.
|
|
861
905
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/fs
|
|
862
906
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/fs/LICENSE.md
|
|
863
|
-
├─ @npmcli/git@
|
|
907
|
+
├─ @npmcli/git@3.0.1
|
|
864
908
|
│ ├─ licenses: ISC
|
|
865
909
|
│ ├─ repository: https://github.com/npm/git
|
|
866
|
-
│ ├─ publisher:
|
|
867
|
-
│ ├─ email: i@izs.me
|
|
868
|
-
│ ├─ url: https://izs.me
|
|
910
|
+
│ ├─ publisher: GitHub Inc.
|
|
869
911
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/git
|
|
870
912
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/git/LICENSE
|
|
871
913
|
├─ @npmcli/installed-package-contents@1.0.7
|
|
@@ -876,32 +918,28 @@
|
|
|
876
918
|
│ ├─ url: https://izs.me
|
|
877
919
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/installed-package-contents
|
|
878
920
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/installed-package-contents/LICENSE
|
|
879
|
-
├─ @npmcli/move-file@
|
|
921
|
+
├─ @npmcli/move-file@2.0.0
|
|
880
922
|
│ ├─ licenses: MIT
|
|
881
923
|
│ ├─ repository: https://github.com/npm/move-file
|
|
924
|
+
│ ├─ publisher: GitHub Inc.
|
|
882
925
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/move-file
|
|
883
926
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/move-file/LICENSE.md
|
|
884
|
-
├─ @npmcli/node-gyp@
|
|
927
|
+
├─ @npmcli/node-gyp@2.0.0
|
|
885
928
|
│ ├─ licenses: ISC
|
|
886
929
|
│ ├─ repository: https://github.com/npm/node-gyp
|
|
887
|
-
│ ├─ publisher:
|
|
888
|
-
│ ├─ email: bonkydog@bonkydog.com
|
|
930
|
+
│ ├─ publisher: GitHub Inc.
|
|
889
931
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/node-gyp
|
|
890
932
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/node-gyp/README.md
|
|
891
|
-
├─ @npmcli/promise-spawn@
|
|
933
|
+
├─ @npmcli/promise-spawn@3.0.0
|
|
892
934
|
│ ├─ licenses: ISC
|
|
893
935
|
│ ├─ repository: https://github.com/npm/promise-spawn
|
|
894
|
-
│ ├─ publisher:
|
|
895
|
-
│ ├─ email: i@izs.me
|
|
896
|
-
│ ├─ url: https://izs.me
|
|
936
|
+
│ ├─ publisher: GitHub Inc.
|
|
897
937
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/promise-spawn
|
|
898
938
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/promise-spawn/LICENSE
|
|
899
|
-
├─ @npmcli/run-script@
|
|
939
|
+
├─ @npmcli/run-script@3.0.2
|
|
900
940
|
│ ├─ licenses: ISC
|
|
901
941
|
│ ├─ repository: https://github.com/npm/run-script
|
|
902
|
-
│ ├─ publisher:
|
|
903
|
-
│ ├─ email: i@izs.me
|
|
904
|
-
│ ├─ url: https://izs.me
|
|
942
|
+
│ ├─ publisher: GitHub Inc.
|
|
905
943
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/run-script
|
|
906
944
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/run-script/LICENSE
|
|
907
945
|
├─ @sindresorhus/is@0.14.0
|
|
@@ -931,21 +969,14 @@
|
|
|
931
969
|
│ ├─ publisher: Szymon Marczak
|
|
932
970
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@szmarczak/http-timer
|
|
933
971
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@szmarczak/http-timer/LICENSE
|
|
934
|
-
├─ @tootallnate/once@1.1.2
|
|
935
|
-
│ ├─ licenses: MIT
|
|
936
|
-
│ ├─ repository: https://github.com/TooTallNate/once
|
|
937
|
-
│ ├─ publisher: Nathan Rajlich
|
|
938
|
-
│ ├─ email: nathan@tootallnate.net
|
|
939
|
-
│ ├─ url: http://n8.io/
|
|
940
|
-
│ └─ path: /home/ftreml/dev/botium-core/node_modules/@tootallnate/once
|
|
941
972
|
├─ @tootallnate/once@2.0.0
|
|
942
973
|
│ ├─ licenses: MIT
|
|
943
974
|
│ ├─ repository: https://github.com/TooTallNate/once
|
|
944
975
|
│ ├─ publisher: Nathan Rajlich
|
|
945
976
|
│ ├─ email: nathan@tootallnate.net
|
|
946
977
|
│ ├─ url: http://n8.io/
|
|
947
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules
|
|
948
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules
|
|
978
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@tootallnate/once
|
|
979
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@tootallnate/once/LICENSE
|
|
949
980
|
├─ @types/color-name@1.1.1
|
|
950
981
|
│ ├─ licenses: MIT
|
|
951
982
|
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
@@ -971,6 +1002,11 @@
|
|
|
971
1002
|
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
972
1003
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@types/estree
|
|
973
1004
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@types/estree/LICENSE
|
|
1005
|
+
├─ @types/json-schema@7.0.11
|
|
1006
|
+
│ ├─ licenses: MIT
|
|
1007
|
+
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
1008
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@types/json-schema
|
|
1009
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@types/json-schema/LICENSE
|
|
974
1010
|
├─ @types/json5@0.0.29
|
|
975
1011
|
│ ├─ licenses: MIT
|
|
976
1012
|
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
@@ -1006,6 +1042,11 @@
|
|
|
1006
1042
|
│ ├─ repository: https://github.com/jshttp/accepts
|
|
1007
1043
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/accepts
|
|
1008
1044
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/accepts/LICENSE
|
|
1045
|
+
├─ accepts@1.3.8
|
|
1046
|
+
│ ├─ licenses: MIT
|
|
1047
|
+
│ ├─ repository: https://github.com/jshttp/accepts
|
|
1048
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/express/node_modules/accepts
|
|
1049
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/express/node_modules/accepts/LICENSE
|
|
1009
1050
|
├─ acorn-jsx@5.3.2
|
|
1010
1051
|
│ ├─ licenses: MIT
|
|
1011
1052
|
│ ├─ repository: https://github.com/acornjs/acorn-jsx
|
|
@@ -1021,7 +1062,7 @@
|
|
|
1021
1062
|
│ ├─ repository: https://github.com/acornjs/acorn
|
|
1022
1063
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/acorn
|
|
1023
1064
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/acorn/LICENSE
|
|
1024
|
-
├─ adler-32@1.3.
|
|
1065
|
+
├─ adler-32@1.3.1
|
|
1025
1066
|
│ ├─ licenses: Apache-2.0
|
|
1026
1067
|
│ ├─ repository: https://github.com/SheetJS/js-adler32
|
|
1027
1068
|
│ ├─ publisher: sheetjs
|
|
@@ -1035,7 +1076,7 @@
|
|
|
1035
1076
|
│ ├─ url: http://n8.io/
|
|
1036
1077
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/agent-base
|
|
1037
1078
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/agent-base/README.md
|
|
1038
|
-
├─ agentkeepalive@4.2.
|
|
1079
|
+
├─ agentkeepalive@4.2.1
|
|
1039
1080
|
│ ├─ licenses: MIT
|
|
1040
1081
|
│ ├─ repository: https://github.com/node-modules/agentkeepalive
|
|
1041
1082
|
│ ├─ publisher: fengmk2
|
|
@@ -1202,7 +1243,7 @@
|
|
|
1202
1243
|
│ ├─ url: sindresorhus.com
|
|
1203
1244
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array-union
|
|
1204
1245
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array-union/license
|
|
1205
|
-
├─ array.prototype.flat@1.
|
|
1246
|
+
├─ array.prototype.flat@1.3.0
|
|
1206
1247
|
│ ├─ licenses: MIT
|
|
1207
1248
|
│ ├─ repository: https://github.com/es-shims/Array.prototype.flat
|
|
1208
1249
|
│ ├─ publisher: Jordan Harband
|
|
@@ -1328,17 +1369,22 @@
|
|
|
1328
1369
|
│ ├─ url: sindresorhus.com
|
|
1329
1370
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/binary-extensions
|
|
1330
1371
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/binary-extensions/license
|
|
1331
|
-
├─ body-parser@1.19.
|
|
1372
|
+
├─ body-parser@1.19.2
|
|
1373
|
+
│ ├─ licenses: MIT
|
|
1374
|
+
│ ├─ repository: https://github.com/expressjs/body-parser
|
|
1375
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/express/node_modules/body-parser
|
|
1376
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/express/node_modules/body-parser/LICENSE
|
|
1377
|
+
├─ body-parser@1.20.0
|
|
1332
1378
|
│ ├─ licenses: MIT
|
|
1333
1379
|
│ ├─ repository: https://github.com/expressjs/body-parser
|
|
1334
1380
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser
|
|
1335
1381
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/LICENSE
|
|
1336
|
-
├─ boolean@3.
|
|
1382
|
+
├─ boolean@3.2.0
|
|
1337
1383
|
│ ├─ licenses: MIT
|
|
1338
1384
|
│ ├─ repository: https://github.com/thenativeweb/boolean
|
|
1339
1385
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/boolean
|
|
1340
1386
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/boolean/LICENSE.txt
|
|
1341
|
-
├─ botium-core@1.12.
|
|
1387
|
+
├─ botium-core@1.12.5
|
|
1342
1388
|
│ ├─ licenses: MIT
|
|
1343
1389
|
│ ├─ repository: https://github.com/codeforequity-at/botium-core
|
|
1344
1390
|
│ ├─ publisher: Florian Treml
|
|
@@ -1366,6 +1412,14 @@
|
|
|
1366
1412
|
│ ├─ url: http://juliangruber.com
|
|
1367
1413
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/brace-expansion
|
|
1368
1414
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/brace-expansion/LICENSE
|
|
1415
|
+
├─ brace-expansion@2.0.1
|
|
1416
|
+
│ ├─ licenses: MIT
|
|
1417
|
+
│ ├─ repository: https://github.com/juliangruber/brace-expansion
|
|
1418
|
+
│ ├─ publisher: Julian Gruber
|
|
1419
|
+
│ ├─ email: mail@juliangruber.com
|
|
1420
|
+
│ ├─ url: http://juliangruber.com
|
|
1421
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ignore-walk/node_modules/brace-expansion
|
|
1422
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/ignore-walk/node_modules/brace-expansion/LICENSE
|
|
1369
1423
|
├─ braces@3.0.2
|
|
1370
1424
|
│ ├─ licenses: MIT
|
|
1371
1425
|
│ ├─ repository: https://github.com/micromatch/braces
|
|
@@ -1399,12 +1453,17 @@
|
|
|
1399
1453
|
│ ├─ url: sindresorhus.com
|
|
1400
1454
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/builtin-modules
|
|
1401
1455
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/builtin-modules/license
|
|
1402
|
-
├─ builtins@1.0
|
|
1456
|
+
├─ builtins@4.1.0
|
|
1457
|
+
│ ├─ licenses: MIT
|
|
1458
|
+
│ ├─ repository: https://github.com/juliangruber/builtins
|
|
1459
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/builtins
|
|
1460
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/builtins/License
|
|
1461
|
+
├─ builtins@5.0.1
|
|
1403
1462
|
│ ├─ licenses: MIT
|
|
1404
1463
|
│ ├─ repository: https://github.com/juliangruber/builtins
|
|
1405
1464
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/builtins
|
|
1406
1465
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/builtins/License
|
|
1407
|
-
├─ bytes@3.1.
|
|
1466
|
+
├─ bytes@3.1.2
|
|
1408
1467
|
│ ├─ licenses: MIT
|
|
1409
1468
|
│ ├─ repository: https://github.com/visionmedia/bytes.js
|
|
1410
1469
|
│ ├─ publisher: TJ Holowaychuk
|
|
@@ -1412,9 +1471,10 @@
|
|
|
1412
1471
|
│ ├─ url: http://tjholowaychuk.com
|
|
1413
1472
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/bytes
|
|
1414
1473
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/bytes/LICENSE
|
|
1415
|
-
├─ cacache@
|
|
1474
|
+
├─ cacache@16.0.4
|
|
1416
1475
|
│ ├─ licenses: ISC
|
|
1417
1476
|
│ ├─ repository: https://github.com/npm/cacache
|
|
1477
|
+
│ ├─ publisher: GitHub Inc.
|
|
1418
1478
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/cacache
|
|
1419
1479
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/cacache/LICENSE.md
|
|
1420
1480
|
├─ cacheable-request@6.1.0
|
|
@@ -1492,7 +1552,7 @@
|
|
|
1492
1552
|
│ ├─ email: mikeal.rogers@gmail.com
|
|
1493
1553
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/caseless
|
|
1494
1554
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/caseless/LICENSE
|
|
1495
|
-
├─ cfb@1.2.
|
|
1555
|
+
├─ cfb@1.2.2
|
|
1496
1556
|
│ ├─ licenses: Apache-2.0
|
|
1497
1557
|
│ ├─ repository: https://github.com/SheetJS/js-cfb
|
|
1498
1558
|
│ ├─ publisher: sheetjs
|
|
@@ -1703,7 +1763,7 @@
|
|
|
1703
1763
|
│ ├─ email: tj@vision-media.ca
|
|
1704
1764
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/swagger-jsdoc/node_modules/commander
|
|
1705
1765
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/swagger-jsdoc/node_modules/commander/LICENSE
|
|
1706
|
-
├─ commander@
|
|
1766
|
+
├─ commander@9.2.0
|
|
1707
1767
|
│ ├─ licenses: MIT
|
|
1708
1768
|
│ ├─ repository: https://github.com/tj/commander.js
|
|
1709
1769
|
│ ├─ publisher: TJ Holowaychuk
|
|
@@ -1783,6 +1843,13 @@
|
|
|
1783
1843
|
│ ├─ email: shtylman@gmail.com
|
|
1784
1844
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/cookie
|
|
1785
1845
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/cookie/LICENSE
|
|
1846
|
+
├─ cookie@0.4.2
|
|
1847
|
+
│ ├─ licenses: MIT
|
|
1848
|
+
│ ├─ repository: https://github.com/jshttp/cookie
|
|
1849
|
+
│ ├─ publisher: Roman Shtylman
|
|
1850
|
+
│ ├─ email: shtylman@gmail.com
|
|
1851
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/express/node_modules/cookie
|
|
1852
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/express/node_modules/cookie/LICENSE
|
|
1786
1853
|
├─ core-js-compat@3.20.3
|
|
1787
1854
|
│ ├─ licenses: MIT
|
|
1788
1855
|
│ ├─ repository: https://github.com/zloirock/core-js
|
|
@@ -1814,7 +1881,7 @@
|
|
|
1814
1881
|
│ ├─ url: https://github.com/troygoode/
|
|
1815
1882
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/cors
|
|
1816
1883
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/cors/LICENSE
|
|
1817
|
-
├─ crc-32@1.2.
|
|
1884
|
+
├─ crc-32@1.2.2
|
|
1818
1885
|
│ ├─ licenses: Apache-2.0
|
|
1819
1886
|
│ ├─ repository: https://github.com/SheetJS/js-crc32
|
|
1820
1887
|
│ ├─ publisher: sheetjs
|
|
@@ -1892,6 +1959,13 @@
|
|
|
1892
1959
|
│ ├─ repository: https://github.com/debug-js/debug
|
|
1893
1960
|
│ ├─ publisher: Josh Junon
|
|
1894
1961
|
│ ├─ email: josh.junon@protonmail.com
|
|
1962
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/debug
|
|
1963
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/debug/LICENSE
|
|
1964
|
+
├─ debug@4.3.4
|
|
1965
|
+
│ ├─ licenses: MIT
|
|
1966
|
+
│ ├─ repository: https://github.com/debug-js/debug
|
|
1967
|
+
│ ├─ publisher: Josh Junon
|
|
1968
|
+
│ ├─ email: josh.junon@protonmail.com
|
|
1895
1969
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/debug
|
|
1896
1970
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/debug/LICENSE
|
|
1897
1971
|
├─ debuglog@1.0.1
|
|
@@ -1974,7 +2048,7 @@
|
|
|
1974
2048
|
│ ├─ repository: https://github.com/visionmedia/node-delegates
|
|
1975
2049
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/delegates
|
|
1976
2050
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/delegates/License
|
|
1977
|
-
├─ denque@
|
|
2051
|
+
├─ denque@2.0.1
|
|
1978
2052
|
│ ├─ licenses: Apache-2.0
|
|
1979
2053
|
│ ├─ repository: https://github.com/invertase/denque
|
|
1980
2054
|
│ ├─ publisher: Invertase
|
|
@@ -1989,6 +2063,13 @@
|
|
|
1989
2063
|
│ ├─ email: doug@somethingdoug.com
|
|
1990
2064
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/depd
|
|
1991
2065
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/depd/LICENSE
|
|
2066
|
+
├─ depd@2.0.0
|
|
2067
|
+
│ ├─ licenses: MIT
|
|
2068
|
+
│ ├─ repository: https://github.com/dougwilson/nodejs-depd
|
|
2069
|
+
│ ├─ publisher: Douglas Christopher Wilson
|
|
2070
|
+
│ ├─ email: doug@somethingdoug.com
|
|
2071
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/depd
|
|
2072
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/depd/LICENSE
|
|
1992
2073
|
├─ destroy@1.0.4
|
|
1993
2074
|
│ ├─ licenses: MIT
|
|
1994
2075
|
│ ├─ repository: https://github.com/stream-utils/destroy
|
|
@@ -1997,6 +2078,14 @@
|
|
|
1997
2078
|
│ ├─ url: http://jongleberry.com
|
|
1998
2079
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/destroy
|
|
1999
2080
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/destroy/LICENSE
|
|
2081
|
+
├─ destroy@1.2.0
|
|
2082
|
+
│ ├─ licenses: MIT
|
|
2083
|
+
│ ├─ repository: https://github.com/stream-utils/destroy
|
|
2084
|
+
│ ├─ publisher: Jonathan Ong
|
|
2085
|
+
│ ├─ email: me@jongleberry.com
|
|
2086
|
+
│ ├─ url: http://jongleberry.com
|
|
2087
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/destroy
|
|
2088
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/destroy/LICENSE
|
|
2000
2089
|
├─ dezalgo@1.0.3
|
|
2001
2090
|
│ ├─ licenses: ISC
|
|
2002
2091
|
│ ├─ repository: https://github.com/npm/dezalgo
|
|
@@ -2146,6 +2235,14 @@
|
|
|
2146
2235
|
│ ├─ url: http://ljharb.codes
|
|
2147
2236
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.map/node_modules/es-abstract
|
|
2148
2237
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.map/node_modules/es-abstract/LICENSE
|
|
2238
|
+
├─ es-abstract@1.19.5
|
|
2239
|
+
│ ├─ licenses: MIT
|
|
2240
|
+
│ ├─ repository: https://github.com/ljharb/es-abstract
|
|
2241
|
+
│ ├─ publisher: Jordan Harband
|
|
2242
|
+
│ ├─ email: ljharb@gmail.com
|
|
2243
|
+
│ ├─ url: http://ljharb.codes
|
|
2244
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/es-abstract
|
|
2245
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/es-abstract/LICENSE
|
|
2149
2246
|
├─ es-array-method-boxes-properly@1.0.0
|
|
2150
2247
|
│ ├─ licenses: MIT
|
|
2151
2248
|
│ ├─ repository: https://github.com/ljharb/es-array-method-boxes-properly
|
|
@@ -2160,6 +2257,13 @@
|
|
|
2160
2257
|
│ ├─ email: ljharb@gmail.com
|
|
2161
2258
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/es-get-iterator
|
|
2162
2259
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/es-get-iterator/LICENSE
|
|
2260
|
+
├─ es-shim-unscopables@1.0.0
|
|
2261
|
+
│ ├─ licenses: MIT
|
|
2262
|
+
│ ├─ repository: https://github.com/ljharb/es-shim-unscopables
|
|
2263
|
+
│ ├─ publisher: Jordan Harband
|
|
2264
|
+
│ ├─ email: ljharb@gmail.com
|
|
2265
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/es-shim-unscopables
|
|
2266
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/es-shim-unscopables/LICENSE
|
|
2163
2267
|
├─ es-to-primitive@1.2.1
|
|
2164
2268
|
│ ├─ licenses: MIT
|
|
2165
2269
|
│ ├─ repository: https://github.com/ljharb/es-to-primitive
|
|
@@ -2208,14 +2312,14 @@
|
|
|
2208
2312
|
│ ├─ publisher: Sindre Sorhus
|
|
2209
2313
|
│ ├─ email: sindresorhus@gmail.com
|
|
2210
2314
|
│ ├─ url: https://sindresorhus.com
|
|
2211
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
2212
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
2315
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint/node_modules/escape-string-regexp
|
|
2316
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint/node_modules/escape-string-regexp/license
|
|
2213
2317
|
├─ escodegen@1.14.3
|
|
2214
2318
|
│ ├─ licenses: BSD-2-Clause
|
|
2215
2319
|
│ ├─ repository: https://github.com/estools/escodegen
|
|
2216
2320
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/escodegen
|
|
2217
2321
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/escodegen/LICENSE.BSD
|
|
2218
|
-
├─ eslint-config-standard@
|
|
2322
|
+
├─ eslint-config-standard@17.0.0
|
|
2219
2323
|
│ ├─ licenses: MIT
|
|
2220
2324
|
│ ├─ repository: https://github.com/standard/eslint-config-standard
|
|
2221
2325
|
│ ├─ publisher: Feross Aboukhadijeh
|
|
@@ -2230,33 +2334,33 @@
|
|
|
2230
2334
|
│ ├─ url: me@benmosher.com
|
|
2231
2335
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-import-resolver-node
|
|
2232
2336
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-import-resolver-node/LICENSE
|
|
2233
|
-
├─ eslint-module-utils@2.7.
|
|
2337
|
+
├─ eslint-module-utils@2.7.3
|
|
2234
2338
|
│ ├─ licenses: MIT
|
|
2235
2339
|
│ ├─ repository: https://github.com/import-js/eslint-plugin-import
|
|
2236
2340
|
│ ├─ publisher: Ben Mosher
|
|
2237
2341
|
│ ├─ email: me@benmosher.com
|
|
2238
2342
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-module-utils
|
|
2239
2343
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-module-utils/LICENSE
|
|
2240
|
-
├─ eslint-plugin-es@
|
|
2344
|
+
├─ eslint-plugin-es@4.1.0
|
|
2241
2345
|
│ ├─ licenses: MIT
|
|
2242
2346
|
│ ├─ repository: https://github.com/mysticatea/eslint-plugin-es
|
|
2243
2347
|
│ ├─ publisher: Toru Nagashima
|
|
2244
2348
|
│ ├─ url: https://github.com/mysticatea
|
|
2245
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es
|
|
2246
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es/LICENSE
|
|
2247
|
-
├─ eslint-plugin-import@2.
|
|
2349
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/eslint-plugin-es
|
|
2350
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/eslint-plugin-es/LICENSE
|
|
2351
|
+
├─ eslint-plugin-import@2.26.0
|
|
2248
2352
|
│ ├─ licenses: MIT
|
|
2249
2353
|
│ ├─ repository: https://github.com/import-js/eslint-plugin-import
|
|
2250
2354
|
│ ├─ publisher: Ben Mosher
|
|
2251
2355
|
│ ├─ email: me@benmosher.com
|
|
2252
2356
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-import
|
|
2253
2357
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-import/LICENSE
|
|
2254
|
-
├─ eslint-plugin-
|
|
2358
|
+
├─ eslint-plugin-n@15.1.0
|
|
2255
2359
|
│ ├─ licenses: MIT
|
|
2256
|
-
│ ├─ repository: https://github.com/
|
|
2360
|
+
│ ├─ repository: https://github.com/weiran-zsd/eslint-plugin-node
|
|
2257
2361
|
│ ├─ publisher: Toru Nagashima
|
|
2258
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-
|
|
2259
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-
|
|
2362
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n
|
|
2363
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/LICENSE
|
|
2260
2364
|
├─ eslint-plugin-promise@6.0.0
|
|
2261
2365
|
│ ├─ licenses: ISC
|
|
2262
2366
|
│ ├─ repository: https://github.com/xjamundx/eslint-plugin-promise
|
|
@@ -2277,12 +2381,12 @@
|
|
|
2277
2381
|
│ ├─ repository: https://github.com/eslint/eslint-scope
|
|
2278
2382
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-scope
|
|
2279
2383
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-scope/LICENSE
|
|
2280
|
-
├─ eslint-utils@2.
|
|
2384
|
+
├─ eslint-utils@2.1.0
|
|
2281
2385
|
│ ├─ licenses: MIT
|
|
2282
2386
|
│ ├─ repository: https://github.com/mysticatea/eslint-utils
|
|
2283
2387
|
│ ├─ publisher: Toru Nagashima
|
|
2284
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es/node_modules/eslint-utils
|
|
2285
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es/node_modules/eslint-utils/LICENSE
|
|
2388
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/eslint-plugin-es/node_modules/eslint-utils
|
|
2389
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-n/node_modules/eslint-plugin-es/node_modules/eslint-utils/LICENSE
|
|
2286
2390
|
├─ eslint-utils@3.0.0
|
|
2287
2391
|
│ ├─ licenses: MIT
|
|
2288
2392
|
│ ├─ repository: https://github.com/mysticatea/eslint-utils
|
|
@@ -2310,7 +2414,7 @@
|
|
|
2310
2414
|
│ ├─ url: https://github.com/mysticatea
|
|
2311
2415
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/espree/node_modules/eslint-visitor-keys
|
|
2312
2416
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/espree/node_modules/eslint-visitor-keys/LICENSE
|
|
2313
|
-
├─ eslint@8.
|
|
2417
|
+
├─ eslint@8.13.0
|
|
2314
2418
|
│ ├─ licenses: MIT
|
|
2315
2419
|
│ ├─ repository: https://github.com/eslint/eslint
|
|
2316
2420
|
│ ├─ publisher: Nicholas C. Zakas
|
|
@@ -2358,8 +2462,8 @@
|
|
|
2358
2462
|
├─ estraverse@5.3.0
|
|
2359
2463
|
│ ├─ licenses: BSD-2-Clause
|
|
2360
2464
|
│ ├─ repository: https://github.com/estools/estraverse
|
|
2361
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
2362
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
2465
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/esquery/node_modules/estraverse
|
|
2466
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/esquery/node_modules/estraverse/LICENSE.BSD
|
|
2363
2467
|
├─ estree-walker@0.6.1
|
|
2364
2468
|
│ ├─ licenses: MIT
|
|
2365
2469
|
│ ├─ repository: https://github.com/Rich-Harris/estree-walker
|
|
@@ -2376,13 +2480,7 @@
|
|
|
2376
2480
|
│ ├─ repository: https://github.com/jshttp/etag
|
|
2377
2481
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/etag
|
|
2378
2482
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/etag/LICENSE
|
|
2379
|
-
├─
|
|
2380
|
-
│ ├─ licenses: Apache-2.0
|
|
2381
|
-
│ ├─ repository: https://github.com/SheetJS/node-exit-on-epipe
|
|
2382
|
-
│ ├─ publisher: sheetjs
|
|
2383
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/exit-on-epipe
|
|
2384
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/exit-on-epipe/LICENSE
|
|
2385
|
-
├─ express@4.17.2
|
|
2483
|
+
├─ express@4.17.3
|
|
2386
2484
|
│ ├─ licenses: MIT
|
|
2387
2485
|
│ ├─ repository: https://github.com/expressjs/express
|
|
2388
2486
|
│ ├─ publisher: TJ Holowaychuk
|
|
@@ -2644,7 +2742,7 @@
|
|
|
2644
2742
|
│ ├─ publisher: Mikola Lysenko
|
|
2645
2743
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/functional-red-black-tree
|
|
2646
2744
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/functional-red-black-tree/LICENSE
|
|
2647
|
-
├─ gauge@4.0.
|
|
2745
|
+
├─ gauge@4.0.4
|
|
2648
2746
|
│ ├─ licenses: ISC
|
|
2649
2747
|
│ ├─ repository: https://github.com/npm/gauge
|
|
2650
2748
|
│ ├─ publisher: GitHub Inc.
|
|
@@ -2752,8 +2850,16 @@
|
|
|
2752
2850
|
│ ├─ publisher: Isaac Z. Schlueter
|
|
2753
2851
|
│ ├─ email: i@izs.me
|
|
2754
2852
|
│ ├─ url: http://blog.izs.me/
|
|
2755
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
2756
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
2853
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/cacache/node_modules/glob
|
|
2854
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/cacache/node_modules/glob/LICENSE
|
|
2855
|
+
├─ glob@8.0.1
|
|
2856
|
+
│ ├─ licenses: ISC
|
|
2857
|
+
│ ├─ repository: https://github.com/isaacs/node-glob
|
|
2858
|
+
│ ├─ publisher: Isaac Z. Schlueter
|
|
2859
|
+
│ ├─ email: i@izs.me
|
|
2860
|
+
│ ├─ url: http://blog.izs.me/
|
|
2861
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/glob
|
|
2862
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/glob/LICENSE
|
|
2757
2863
|
├─ global-dirs@3.0.0
|
|
2758
2864
|
│ ├─ licenses: MIT
|
|
2759
2865
|
│ ├─ repository: https://github.com/sindresorhus/global-dirs
|
|
@@ -2770,7 +2876,7 @@
|
|
|
2770
2876
|
│ ├─ url: sindresorhus.com
|
|
2771
2877
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/globals
|
|
2772
2878
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/globals/license
|
|
2773
|
-
├─ globals@13.
|
|
2879
|
+
├─ globals@13.13.0
|
|
2774
2880
|
│ ├─ licenses: MIT
|
|
2775
2881
|
│ ├─ repository: https://github.com/sindresorhus/globals
|
|
2776
2882
|
│ ├─ publisher: Sindre Sorhus
|
|
@@ -2796,7 +2902,7 @@
|
|
|
2796
2902
|
│ ├─ repository: https://github.com/isaacs/node-graceful-fs
|
|
2797
2903
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/graceful-fs
|
|
2798
2904
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/graceful-fs/LICENSE
|
|
2799
|
-
├─ graceful-fs@4.2.
|
|
2905
|
+
├─ graceful-fs@4.2.10
|
|
2800
2906
|
│ ├─ licenses: ISC
|
|
2801
2907
|
│ ├─ repository: https://github.com/isaacs/node-graceful-fs
|
|
2802
2908
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/node-gyp/node_modules/graceful-fs
|
|
@@ -2863,6 +2969,14 @@
|
|
|
2863
2969
|
│ ├─ url: http://ljharb.codes
|
|
2864
2970
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/has-symbols
|
|
2865
2971
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/has-symbols/LICENSE
|
|
2972
|
+
├─ has-symbols@1.0.3
|
|
2973
|
+
│ ├─ licenses: MIT
|
|
2974
|
+
│ ├─ repository: https://github.com/inspect-js/has-symbols
|
|
2975
|
+
│ ├─ publisher: Jordan Harband
|
|
2976
|
+
│ ├─ email: ljharb@gmail.com
|
|
2977
|
+
│ ├─ url: http://ljharb.codes
|
|
2978
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/has-symbols
|
|
2979
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/has-symbols/LICENSE
|
|
2866
2980
|
├─ has-tostringtag@1.0.0
|
|
2867
2981
|
│ ├─ licenses: MIT
|
|
2868
2982
|
│ ├─ repository: https://github.com/inspect-js/has-tostringtag
|
|
@@ -2923,12 +3037,10 @@
|
|
|
2923
3037
|
│ ├─ url: http://re-becca.org
|
|
2924
3038
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/hosted-git-info
|
|
2925
3039
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/hosted-git-info/LICENSE
|
|
2926
|
-
├─ hosted-git-info@
|
|
3040
|
+
├─ hosted-git-info@5.0.0
|
|
2927
3041
|
│ ├─ licenses: ISC
|
|
2928
3042
|
│ ├─ repository: https://github.com/npm/hosted-git-info
|
|
2929
|
-
│ ├─ publisher:
|
|
2930
|
-
│ ├─ email: me@re-becca.org
|
|
2931
|
-
│ ├─ url: http://re-becca.org
|
|
3043
|
+
│ ├─ publisher: GitHub Inc.
|
|
2932
3044
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-package-arg/node_modules/hosted-git-info
|
|
2933
3045
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-package-arg/node_modules/hosted-git-info/LICENSE
|
|
2934
3046
|
├─ html-escaper@2.0.2
|
|
@@ -2953,29 +3065,29 @@
|
|
|
2953
3065
|
│ ├─ url: http://jongleberry.com
|
|
2954
3066
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/http-errors
|
|
2955
3067
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/http-errors/LICENSE
|
|
2956
|
-
├─ http-
|
|
3068
|
+
├─ http-errors@2.0.0
|
|
2957
3069
|
│ ├─ licenses: MIT
|
|
2958
|
-
│ ├─ repository: https://github.com/
|
|
2959
|
-
│ ├─ publisher:
|
|
2960
|
-
│ ├─ email:
|
|
2961
|
-
│ ├─ url: http://
|
|
2962
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/http-
|
|
2963
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/http-
|
|
3070
|
+
│ ├─ repository: https://github.com/jshttp/http-errors
|
|
3071
|
+
│ ├─ publisher: Jonathan Ong
|
|
3072
|
+
│ ├─ email: me@jongleberry.com
|
|
3073
|
+
│ ├─ url: http://jongleberry.com
|
|
3074
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/http-errors
|
|
3075
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/http-errors/LICENSE
|
|
2964
3076
|
├─ http-proxy-agent@5.0.0
|
|
2965
3077
|
│ ├─ licenses: MIT
|
|
2966
3078
|
│ ├─ repository: https://github.com/TooTallNate/node-http-proxy-agent
|
|
2967
3079
|
│ ├─ publisher: Nathan Rajlich
|
|
2968
3080
|
│ ├─ email: nathan@tootallnate.net
|
|
2969
3081
|
│ ├─ url: http://n8.io/
|
|
2970
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
2971
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
3082
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/http-proxy-agent
|
|
3083
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/http-proxy-agent/README.md
|
|
2972
3084
|
├─ http-signature@1.2.0
|
|
2973
3085
|
│ ├─ licenses: MIT
|
|
2974
3086
|
│ ├─ repository: https://github.com/joyent/node-http-signature
|
|
2975
3087
|
│ ├─ publisher: Joyent, Inc
|
|
2976
3088
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/http-signature
|
|
2977
3089
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/http-signature/LICENSE
|
|
2978
|
-
├─ https-proxy-agent@5.0.
|
|
3090
|
+
├─ https-proxy-agent@5.0.1
|
|
2979
3091
|
│ ├─ licenses: MIT
|
|
2980
3092
|
│ ├─ repository: https://github.com/TooTallNate/node-https-proxy-agent
|
|
2981
3093
|
│ ├─ publisher: Nathan Rajlich
|
|
@@ -3005,26 +3117,12 @@
|
|
|
3005
3117
|
│ ├─ email: ashtuchkin@gmail.com
|
|
3006
3118
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/encoding/node_modules/iconv-lite
|
|
3007
3119
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/encoding/node_modules/iconv-lite/LICENSE
|
|
3008
|
-
├─ ignore-walk@
|
|
3120
|
+
├─ ignore-walk@5.0.1
|
|
3009
3121
|
│ ├─ licenses: ISC
|
|
3010
|
-
│ ├─ repository: https://github.com/
|
|
3011
|
-
│ ├─ publisher:
|
|
3012
|
-
│ ├─ email: i@izs.me
|
|
3013
|
-
│ ├─ url: http://blog.izs.me/
|
|
3122
|
+
│ ├─ repository: https://github.com/npm/ignore-walk
|
|
3123
|
+
│ ├─ publisher: GitHub Inc.
|
|
3014
3124
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ignore-walk
|
|
3015
3125
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/ignore-walk/LICENSE
|
|
3016
|
-
├─ ignore@4.0.6
|
|
3017
|
-
│ ├─ licenses: MIT
|
|
3018
|
-
│ ├─ repository: https://github.com/kaelzhang/node-ignore
|
|
3019
|
-
│ ├─ publisher: kael
|
|
3020
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@eslint/eslintrc/node_modules/ignore
|
|
3021
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@eslint/eslintrc/node_modules/ignore/LICENSE-MIT
|
|
3022
|
-
├─ ignore@5.1.4
|
|
3023
|
-
│ ├─ licenses: MIT
|
|
3024
|
-
│ ├─ repository: https://github.com/kaelzhang/node-ignore
|
|
3025
|
-
│ ├─ publisher: kael
|
|
3026
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-node/node_modules/ignore
|
|
3027
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-node/node_modules/ignore/LICENSE-MIT
|
|
3028
3126
|
├─ ignore@5.1.8
|
|
3029
3127
|
│ ├─ licenses: MIT
|
|
3030
3128
|
│ ├─ repository: https://github.com/kaelzhang/node-ignore
|
|
@@ -3093,8 +3191,8 @@
|
|
|
3093
3191
|
├─ inherits@2.0.4
|
|
3094
3192
|
│ ├─ licenses: ISC
|
|
3095
3193
|
│ ├─ repository: https://github.com/isaacs/inherits
|
|
3096
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
3097
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
3194
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/inherits
|
|
3195
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/inherits/LICENSE
|
|
3098
3196
|
├─ ini@1.3.8
|
|
3099
3197
|
│ ├─ licenses: ISC
|
|
3100
3198
|
│ ├─ repository: https://github.com/isaacs/ini
|
|
@@ -3118,10 +3216,10 @@
|
|
|
3118
3216
|
│ ├─ email: ljharb@gmail.com
|
|
3119
3217
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/internal-slot
|
|
3120
3218
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/internal-slot/LICENSE
|
|
3121
|
-
├─ ioredis@
|
|
3219
|
+
├─ ioredis@5.0.4
|
|
3122
3220
|
│ ├─ licenses: MIT
|
|
3123
3221
|
│ ├─ repository: https://github.com/luin/ioredis
|
|
3124
|
-
│ ├─ publisher:
|
|
3222
|
+
│ ├─ publisher: Zihua Li
|
|
3125
3223
|
│ ├─ email: i@zihua.li
|
|
3126
3224
|
│ ├─ url: http://zihua.li
|
|
3127
3225
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ioredis
|
|
@@ -3295,6 +3393,13 @@
|
|
|
3295
3393
|
│ ├─ email: ljharb@gmail.com
|
|
3296
3394
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/is-negative-zero
|
|
3297
3395
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/is-negative-zero/LICENSE
|
|
3396
|
+
├─ is-negative-zero@2.0.2
|
|
3397
|
+
│ ├─ licenses: MIT
|
|
3398
|
+
│ ├─ repository: https://github.com/inspect-js/is-negative-zero
|
|
3399
|
+
│ ├─ publisher: Jordan Harband
|
|
3400
|
+
│ ├─ email: ljharb@gmail.com
|
|
3401
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-negative-zero
|
|
3402
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-negative-zero/LICENSE
|
|
3298
3403
|
├─ is-npm@5.0.0
|
|
3299
3404
|
│ ├─ licenses: MIT
|
|
3300
3405
|
│ ├─ repository: https://github.com/sindresorhus/is-npm
|
|
@@ -3383,6 +3488,14 @@
|
|
|
3383
3488
|
│ ├─ url: http://ljharb.codes
|
|
3384
3489
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/is-shared-array-buffer
|
|
3385
3490
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/is-shared-array-buffer/LICENSE
|
|
3491
|
+
├─ is-shared-array-buffer@1.0.2
|
|
3492
|
+
│ ├─ licenses: MIT
|
|
3493
|
+
│ ├─ repository: https://github.com/inspect-js/is-shared-array-buffer
|
|
3494
|
+
│ ├─ publisher: Jordan Harband
|
|
3495
|
+
│ ├─ email: ljharb@gmail.com
|
|
3496
|
+
│ ├─ url: http://ljharb.codes
|
|
3497
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-shared-array-buffer
|
|
3498
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-shared-array-buffer/LICENSE
|
|
3386
3499
|
├─ is-stream@2.0.0
|
|
3387
3500
|
│ ├─ licenses: MIT
|
|
3388
3501
|
│ ├─ repository: https://github.com/sindresorhus/is-stream
|
|
@@ -3428,6 +3541,13 @@
|
|
|
3428
3541
|
│ ├─ email: ljharb@gmail.com
|
|
3429
3542
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/is-weakref
|
|
3430
3543
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/is-weakref/LICENSE
|
|
3544
|
+
├─ is-weakref@1.0.2
|
|
3545
|
+
│ ├─ licenses: MIT
|
|
3546
|
+
│ ├─ repository: https://github.com/inspect-js/is-weakref
|
|
3547
|
+
│ ├─ publisher: Jordan Harband
|
|
3548
|
+
│ ├─ email: ljharb@gmail.com
|
|
3549
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-weakref
|
|
3550
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/is-weakref/LICENSE
|
|
3431
3551
|
├─ is-windows@1.0.2
|
|
3432
3552
|
│ ├─ licenses: MIT
|
|
3433
3553
|
│ ├─ repository: https://github.com/jonschlinkert/is-windows
|
|
@@ -3558,8 +3678,8 @@
|
|
|
3558
3678
|
│ ├─ repository: https://github.com/nodeca/js-yaml
|
|
3559
3679
|
│ ├─ publisher: Vladimir Zapparov
|
|
3560
3680
|
│ ├─ email: dervus.grim@gmail.com
|
|
3561
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@
|
|
3562
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@
|
|
3681
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@apidevtools/json-schema-ref-parser/node_modules/js-yaml
|
|
3682
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@apidevtools/json-schema-ref-parser/node_modules/js-yaml/LICENSE
|
|
3563
3683
|
├─ jsbn@0.1.1
|
|
3564
3684
|
│ ├─ licenses: MIT
|
|
3565
3685
|
│ ├─ repository: https://github.com/andyperlitch/jsbn
|
|
@@ -3646,7 +3766,7 @@
|
|
|
3646
3766
|
│ ├─ email: aseem.kishore@gmail.com
|
|
3647
3767
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/tsconfig-paths/node_modules/json5
|
|
3648
3768
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/tsconfig-paths/node_modules/json5/LICENSE.md
|
|
3649
|
-
├─ json5@2.2.
|
|
3769
|
+
├─ json5@2.2.1
|
|
3650
3770
|
│ ├─ licenses: MIT
|
|
3651
3771
|
│ ├─ repository: https://github.com/json5/json5
|
|
3652
3772
|
│ ├─ publisher: Aseem Kishore
|
|
@@ -3797,14 +3917,6 @@
|
|
|
3797
3917
|
│ ├─ url: http://allyoucanleet.com/
|
|
3798
3918
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/lodash.defaults
|
|
3799
3919
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/lodash.defaults/LICENSE
|
|
3800
|
-
├─ lodash.flatten@4.4.0
|
|
3801
|
-
│ ├─ licenses: MIT
|
|
3802
|
-
│ ├─ repository: https://github.com/lodash/lodash
|
|
3803
|
-
│ ├─ publisher: John-David Dalton
|
|
3804
|
-
│ ├─ email: john.david.dalton@gmail.com
|
|
3805
|
-
│ ├─ url: http://allyoucanleet.com/
|
|
3806
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/lodash.flatten
|
|
3807
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/lodash.flatten/LICENSE
|
|
3808
3920
|
├─ lodash.flattendeep@4.4.0
|
|
3809
3921
|
│ ├─ licenses: MIT
|
|
3810
3922
|
│ ├─ repository: https://github.com/lodash/lodash
|
|
@@ -3904,13 +4016,13 @@
|
|
|
3904
4016
|
│ ├─ email: i@izs.me
|
|
3905
4017
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/lru-cache
|
|
3906
4018
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/lru-cache/LICENSE
|
|
3907
|
-
├─ lru-cache@7.
|
|
4019
|
+
├─ lru-cache@7.8.1
|
|
3908
4020
|
│ ├─ licenses: ISC
|
|
3909
4021
|
│ ├─ repository: https://github.com/isaacs/node-lru-cache
|
|
3910
4022
|
│ ├─ publisher: Isaac Z. Schlueter
|
|
3911
4023
|
│ ├─ email: i@izs.me
|
|
3912
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
3913
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
4024
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/cacache/node_modules/lru-cache
|
|
4025
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/cacache/node_modules/lru-cache/LICENSE
|
|
3914
4026
|
├─ magic-string@0.25.3
|
|
3915
4027
|
│ ├─ licenses: MIT
|
|
3916
4028
|
│ ├─ repository: https://github.com/rich-harris/magic-string
|
|
@@ -3933,17 +4045,10 @@
|
|
|
3933
4045
|
│ ├─ url: sindresorhus.com
|
|
3934
4046
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/istanbul-lib-report/node_modules/make-dir
|
|
3935
4047
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/istanbul-lib-report/node_modules/make-dir/license
|
|
3936
|
-
├─ make-fetch-happen@10.
|
|
4048
|
+
├─ make-fetch-happen@10.1.2
|
|
3937
4049
|
│ ├─ licenses: ISC
|
|
3938
4050
|
│ ├─ repository: https://github.com/npm/make-fetch-happen
|
|
3939
4051
|
│ ├─ publisher: GitHub Inc.
|
|
3940
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-registry-fetch/node_modules/make-fetch-happen
|
|
3941
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-registry-fetch/node_modules/make-fetch-happen/LICENSE
|
|
3942
|
-
├─ make-fetch-happen@9.1.0
|
|
3943
|
-
│ ├─ licenses: ISC
|
|
3944
|
-
│ ├─ repository: https://github.com/npm/make-fetch-happen
|
|
3945
|
-
│ ├─ publisher: Kat Marchán
|
|
3946
|
-
│ ├─ email: kzm@zkat.tech
|
|
3947
4052
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/make-fetch-happen
|
|
3948
4053
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/make-fetch-happen/LICENSE
|
|
3949
4054
|
├─ markdown-it@12.3.2
|
|
@@ -3994,12 +4099,12 @@
|
|
|
3994
4099
|
│ ├─ url: https://github.com/jonschlinkert
|
|
3995
4100
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/micromatch
|
|
3996
4101
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/micromatch/LICENSE
|
|
3997
|
-
├─ mime-db@1.
|
|
4102
|
+
├─ mime-db@1.52.0
|
|
3998
4103
|
│ ├─ licenses: MIT
|
|
3999
4104
|
│ ├─ repository: https://github.com/jshttp/mime-db
|
|
4000
4105
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mime-db
|
|
4001
4106
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mime-db/LICENSE
|
|
4002
|
-
├─ mime-types@2.1.
|
|
4107
|
+
├─ mime-types@2.1.35
|
|
4003
4108
|
│ ├─ licenses: MIT
|
|
4004
4109
|
│ ├─ repository: https://github.com/jshttp/mime-types
|
|
4005
4110
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mime-types
|
|
@@ -4028,6 +4133,30 @@
|
|
|
4028
4133
|
│ ├─ url: http://blog.izs.me
|
|
4029
4134
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/minimatch
|
|
4030
4135
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/minimatch/LICENSE
|
|
4136
|
+
├─ minimatch@3.1.2
|
|
4137
|
+
│ ├─ licenses: ISC
|
|
4138
|
+
│ ├─ repository: https://github.com/isaacs/minimatch
|
|
4139
|
+
│ ├─ publisher: Isaac Z. Schlueter
|
|
4140
|
+
│ ├─ email: i@izs.me
|
|
4141
|
+
│ ├─ url: http://blog.izs.me
|
|
4142
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-import/node_modules/minimatch
|
|
4143
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-import/node_modules/minimatch/LICENSE
|
|
4144
|
+
├─ minimatch@4.2.1
|
|
4145
|
+
│ ├─ licenses: ISC
|
|
4146
|
+
│ ├─ repository: https://github.com/isaacs/minimatch
|
|
4147
|
+
│ ├─ publisher: Isaac Z. Schlueter
|
|
4148
|
+
│ ├─ email: i@izs.me
|
|
4149
|
+
│ ├─ url: http://blog.izs.me
|
|
4150
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/minimatch
|
|
4151
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/minimatch/LICENSE
|
|
4152
|
+
├─ minimatch@5.0.1
|
|
4153
|
+
│ ├─ licenses: ISC
|
|
4154
|
+
│ ├─ repository: https://github.com/isaacs/minimatch
|
|
4155
|
+
│ ├─ publisher: Isaac Z. Schlueter
|
|
4156
|
+
│ ├─ email: i@izs.me
|
|
4157
|
+
│ ├─ url: http://blog.izs.me
|
|
4158
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ignore-walk/node_modules/minimatch
|
|
4159
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/ignore-walk/node_modules/minimatch/LICENSE
|
|
4031
4160
|
├─ minimist@1.2.5
|
|
4032
4161
|
│ ├─ licenses: MIT
|
|
4033
4162
|
│ ├─ repository: https://github.com/substack/minimist
|
|
@@ -4036,6 +4165,14 @@
|
|
|
4036
4165
|
│ ├─ url: http://substack.net
|
|
4037
4166
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/write/node_modules/mkdirp/node_modules/minimist
|
|
4038
4167
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/write/node_modules/mkdirp/node_modules/minimist/LICENSE
|
|
4168
|
+
├─ minimist@1.2.6
|
|
4169
|
+
│ ├─ licenses: MIT
|
|
4170
|
+
│ ├─ repository: https://github.com/substack/minimist
|
|
4171
|
+
│ ├─ publisher: James Halliday
|
|
4172
|
+
│ ├─ email: mail@substack.net
|
|
4173
|
+
│ ├─ url: http://substack.net
|
|
4174
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/tsconfig-paths/node_modules/minimist
|
|
4175
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/tsconfig-paths/node_modules/minimist/LICENSE
|
|
4039
4176
|
├─ minipass-collect@1.0.2
|
|
4040
4177
|
│ ├─ licenses: ISC
|
|
4041
4178
|
│ ├─ publisher: Isaac Z. Schlueter
|
|
@@ -4043,9 +4180,10 @@
|
|
|
4043
4180
|
│ ├─ url: https://izs.me
|
|
4044
4181
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/minipass-collect
|
|
4045
4182
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/minipass-collect/LICENSE
|
|
4046
|
-
├─ minipass-fetch@1.
|
|
4183
|
+
├─ minipass-fetch@2.1.0
|
|
4047
4184
|
│ ├─ licenses: MIT
|
|
4048
4185
|
│ ├─ repository: https://github.com/npm/minipass-fetch
|
|
4186
|
+
│ ├─ publisher: GitHub Inc.
|
|
4049
4187
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/minipass-fetch
|
|
4050
4188
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/minipass-fetch/LICENSE
|
|
4051
4189
|
├─ minipass-flush@1.0.5
|
|
@@ -4108,14 +4246,14 @@
|
|
|
4108
4246
|
│ ├─ repository: https://github.com/isaacs/node-mkdirp
|
|
4109
4247
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mkdirp
|
|
4110
4248
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mkdirp/LICENSE
|
|
4111
|
-
├─ mocha@9.2.
|
|
4249
|
+
├─ mocha@9.2.2
|
|
4112
4250
|
│ ├─ licenses: MIT
|
|
4113
4251
|
│ ├─ repository: https://github.com/mochajs/mocha
|
|
4114
4252
|
│ ├─ publisher: TJ Holowaychuk
|
|
4115
4253
|
│ ├─ email: tj@vision-media.ca
|
|
4116
4254
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mocha
|
|
4117
4255
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mocha/LICENSE
|
|
4118
|
-
├─ moment@2.29.
|
|
4256
|
+
├─ moment@2.29.3
|
|
4119
4257
|
│ ├─ licenses: MIT
|
|
4120
4258
|
│ ├─ repository: https://github.com/moment/moment
|
|
4121
4259
|
│ ├─ publisher: Iskren Ivov Chernev
|
|
@@ -4145,7 +4283,7 @@
|
|
|
4145
4283
|
│ ├─ email: http://github.com/janl/mustache.js
|
|
4146
4284
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mustache
|
|
4147
4285
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mustache/LICENSE
|
|
4148
|
-
├─ nanoid@3.
|
|
4286
|
+
├─ nanoid@3.3.1
|
|
4149
4287
|
│ ├─ licenses: MIT
|
|
4150
4288
|
│ ├─ repository: https://github.com/ai/nanoid
|
|
4151
4289
|
│ ├─ publisher: Andrey Sitnik
|
|
@@ -4167,8 +4305,8 @@
|
|
|
4167
4305
|
├─ negotiator@0.6.3
|
|
4168
4306
|
│ ├─ licenses: MIT
|
|
4169
4307
|
│ ├─ repository: https://github.com/jshttp/negotiator
|
|
4170
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
4171
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
4308
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/express/node_modules/negotiator
|
|
4309
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/express/node_modules/negotiator/LICENSE
|
|
4172
4310
|
├─ nock@13.2.4
|
|
4173
4311
|
│ ├─ licenses: MIT
|
|
4174
4312
|
│ ├─ repository: https://github.com/nock/nock
|
|
@@ -4184,7 +4322,7 @@
|
|
|
4184
4322
|
│ ├─ url: https://boneskull.com/
|
|
4185
4323
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/node-environment-flags
|
|
4186
4324
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/node-environment-flags/LICENSE
|
|
4187
|
-
├─ node-gyp@
|
|
4325
|
+
├─ node-gyp@9.0.0
|
|
4188
4326
|
│ ├─ licenses: MIT
|
|
4189
4327
|
│ ├─ repository: https://github.com/nodejs/node-gyp
|
|
4190
4328
|
│ ├─ publisher: Nathan Rajlich
|
|
@@ -4228,6 +4366,12 @@
|
|
|
4228
4366
|
│ ├─ email: merynstol@gmail.com
|
|
4229
4367
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/normalize-package-data
|
|
4230
4368
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/normalize-package-data/LICENSE
|
|
4369
|
+
├─ normalize-package-data@4.0.0
|
|
4370
|
+
│ ├─ licenses: BSD-2-Clause
|
|
4371
|
+
│ ├─ repository: https://github.com/npm/normalize-package-data
|
|
4372
|
+
│ ├─ publisher: GitHub Inc.
|
|
4373
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/normalize-package-data
|
|
4374
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/normalize-package-data/LICENSE
|
|
4231
4375
|
├─ normalize-path@3.0.0
|
|
4232
4376
|
│ ├─ licenses: MIT
|
|
4233
4377
|
│ ├─ repository: https://github.com/jonschlinkert/normalize-path
|
|
@@ -4251,16 +4395,17 @@
|
|
|
4251
4395
|
│ ├─ url: http://blog.izs.me/
|
|
4252
4396
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-bundled
|
|
4253
4397
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-bundled/LICENSE
|
|
4254
|
-
├─ npm-check-updates@12.
|
|
4398
|
+
├─ npm-check-updates@12.5.9
|
|
4255
4399
|
│ ├─ licenses: Apache-2.0
|
|
4256
4400
|
│ ├─ repository: https://github.com/raineorshine/npm-check-updates
|
|
4257
4401
|
│ ├─ publisher: Tomas Junnonen
|
|
4258
4402
|
│ ├─ email: tomas1@gmail.com
|
|
4259
4403
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-check-updates
|
|
4260
4404
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-check-updates/LICENSE
|
|
4261
|
-
├─ npm-install-checks@
|
|
4405
|
+
├─ npm-install-checks@5.0.0
|
|
4262
4406
|
│ ├─ licenses: BSD-2-Clause
|
|
4263
4407
|
│ ├─ repository: https://github.com/npm/npm-install-checks
|
|
4408
|
+
│ ├─ publisher: GitHub Inc.
|
|
4264
4409
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-install-checks
|
|
4265
4410
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-install-checks/LICENSE
|
|
4266
4411
|
├─ npm-normalize-package-bin@1.0.1
|
|
@@ -4271,30 +4416,25 @@
|
|
|
4271
4416
|
│ ├─ url: https://izs.me
|
|
4272
4417
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-normalize-package-bin
|
|
4273
4418
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-normalize-package-bin/LICENSE
|
|
4274
|
-
├─ npm-package-arg@
|
|
4419
|
+
├─ npm-package-arg@9.0.2
|
|
4275
4420
|
│ ├─ licenses: ISC
|
|
4276
4421
|
│ ├─ repository: https://github.com/npm/npm-package-arg
|
|
4277
|
-
│ ├─ publisher:
|
|
4278
|
-
│ ├─ email: i@izs.me
|
|
4279
|
-
│ ├─ url: http://blog.izs.me/
|
|
4422
|
+
│ ├─ publisher: GitHub Inc.
|
|
4280
4423
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-package-arg
|
|
4281
4424
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-package-arg/LICENSE
|
|
4282
|
-
├─ npm-packlist@
|
|
4425
|
+
├─ npm-packlist@5.0.0
|
|
4283
4426
|
│ ├─ licenses: ISC
|
|
4284
4427
|
│ ├─ repository: https://github.com/npm/npm-packlist
|
|
4285
|
-
│ ├─ publisher:
|
|
4286
|
-
│ ├─ email: i@izs.me
|
|
4287
|
-
│ ├─ url: http://blog.izs.me/
|
|
4428
|
+
│ ├─ publisher: GitHub Inc.
|
|
4288
4429
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-packlist
|
|
4289
4430
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-packlist/LICENSE
|
|
4290
|
-
├─ npm-pick-manifest@
|
|
4431
|
+
├─ npm-pick-manifest@7.0.1
|
|
4291
4432
|
│ ├─ licenses: ISC
|
|
4292
4433
|
│ ├─ repository: https://github.com/npm/npm-pick-manifest
|
|
4293
|
-
│ ├─ publisher:
|
|
4294
|
-
│ ├─ email: kzm@sykosomatic.org
|
|
4434
|
+
│ ├─ publisher: GitHub Inc.
|
|
4295
4435
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-pick-manifest
|
|
4296
4436
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-pick-manifest/LICENSE.md
|
|
4297
|
-
├─ npm-registry-fetch@
|
|
4437
|
+
├─ npm-registry-fetch@13.1.1
|
|
4298
4438
|
│ ├─ licenses: ISC
|
|
4299
4439
|
│ ├─ repository: https://github.com/npm/npm-registry-fetch
|
|
4300
4440
|
│ ├─ publisher: GitHub Inc.
|
|
@@ -4337,6 +4477,14 @@
|
|
|
4337
4477
|
│ ├─ url: http://substack.net
|
|
4338
4478
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/object-inspect
|
|
4339
4479
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/object-inspect/LICENSE
|
|
4480
|
+
├─ object-inspect@1.12.0
|
|
4481
|
+
│ ├─ licenses: MIT
|
|
4482
|
+
│ ├─ repository: https://github.com/inspect-js/object-inspect
|
|
4483
|
+
│ ├─ publisher: James Halliday
|
|
4484
|
+
│ ├─ email: mail@substack.net
|
|
4485
|
+
│ ├─ url: http://substack.net
|
|
4486
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/object-inspect
|
|
4487
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/array.prototype.flat/node_modules/object-inspect/LICENSE
|
|
4340
4488
|
├─ object-keys@1.1.1
|
|
4341
4489
|
│ ├─ licenses: MIT
|
|
4342
4490
|
│ ├─ repository: https://github.com/ljharb/object-keys
|
|
@@ -4370,6 +4518,11 @@
|
|
|
4370
4518
|
│ ├─ repository: https://github.com/jshttp/on-finished
|
|
4371
4519
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/on-finished
|
|
4372
4520
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/on-finished/LICENSE
|
|
4521
|
+
├─ on-finished@2.4.1
|
|
4522
|
+
│ ├─ licenses: MIT
|
|
4523
|
+
│ ├─ repository: https://github.com/jshttp/on-finished
|
|
4524
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/on-finished
|
|
4525
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/on-finished/LICENSE
|
|
4373
4526
|
├─ once@1.4.0
|
|
4374
4527
|
│ ├─ licenses: ISC
|
|
4375
4528
|
│ ├─ repository: https://github.com/isaacs/once
|
|
@@ -4480,14 +4633,6 @@
|
|
|
4480
4633
|
│ ├─ url: https://sindresorhus.com
|
|
4481
4634
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/p-locate
|
|
4482
4635
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/mocha/node_modules/p-locate/license
|
|
4483
|
-
├─ p-map@2.1.0
|
|
4484
|
-
│ ├─ licenses: MIT
|
|
4485
|
-
│ ├─ repository: https://github.com/sindresorhus/p-map
|
|
4486
|
-
│ ├─ publisher: Sindre Sorhus
|
|
4487
|
-
│ ├─ email: sindresorhus@gmail.com
|
|
4488
|
-
│ ├─ url: sindresorhus.com
|
|
4489
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ioredis/node_modules/p-map
|
|
4490
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/ioredis/node_modules/p-map/license
|
|
4491
4636
|
├─ p-map@3.0.0
|
|
4492
4637
|
│ ├─ licenses: MIT
|
|
4493
4638
|
│ ├─ repository: https://github.com/sindresorhus/p-map
|
|
@@ -4535,12 +4680,10 @@
|
|
|
4535
4680
|
│ ├─ url: sindresorhus.com
|
|
4536
4681
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/package-json
|
|
4537
4682
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/package-json/license
|
|
4538
|
-
├─ pacote@
|
|
4683
|
+
├─ pacote@13.1.1
|
|
4539
4684
|
│ ├─ licenses: ISC
|
|
4540
4685
|
│ ├─ repository: https://github.com/npm/pacote
|
|
4541
|
-
│ ├─ publisher:
|
|
4542
|
-
│ ├─ email: i@izs.me
|
|
4543
|
-
│ ├─ url: https://izs.me
|
|
4686
|
+
│ ├─ publisher: GitHub Inc.
|
|
4544
4687
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/pacote
|
|
4545
4688
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/pacote/LICENSE
|
|
4546
4689
|
├─ parent-module@1.0.1
|
|
@@ -4722,18 +4865,12 @@
|
|
|
4722
4865
|
│ ├─ url: sindresorhus.com
|
|
4723
4866
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/prepend-http
|
|
4724
4867
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/prepend-http/license
|
|
4725
|
-
├─
|
|
4726
|
-
│ ├─ licenses:
|
|
4727
|
-
│ ├─ repository: https://github.com/
|
|
4728
|
-
│ ├─ publisher:
|
|
4729
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/
|
|
4730
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/
|
|
4731
|
-
├─ printj@1.3.1
|
|
4732
|
-
│ ├─ licenses: Apache-2.0
|
|
4733
|
-
│ ├─ repository: https://github.com/SheetJS/printj
|
|
4734
|
-
│ ├─ publisher: sheetjs
|
|
4735
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/crc-32/node_modules/printj
|
|
4736
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/crc-32/node_modules/printj/LICENSE
|
|
4868
|
+
├─ proc-log@2.0.1
|
|
4869
|
+
│ ├─ licenses: ISC
|
|
4870
|
+
│ ├─ repository: https://github.com/npm/proc-log
|
|
4871
|
+
│ ├─ publisher: GitHub Inc.
|
|
4872
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/proc-log
|
|
4873
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/proc-log/LICENSE
|
|
4737
4874
|
├─ process-on-spawn@1.0.0
|
|
4738
4875
|
│ ├─ licenses: MIT
|
|
4739
4876
|
│ ├─ repository: https://github.com/cfware/process-on-spawn
|
|
@@ -4822,12 +4959,17 @@
|
|
|
4822
4959
|
│ ├─ url: sindresorhus.com
|
|
4823
4960
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/pupa
|
|
4824
4961
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/pupa/license
|
|
4962
|
+
├─ qs@6.10.3
|
|
4963
|
+
│ ├─ licenses: BSD-3-Clause
|
|
4964
|
+
│ ├─ repository: https://github.com/ljharb/qs
|
|
4965
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/qs
|
|
4966
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/qs/LICENSE.md
|
|
4825
4967
|
├─ qs@6.5.2
|
|
4826
4968
|
│ ├─ licenses: BSD-3-Clause
|
|
4827
4969
|
│ ├─ repository: https://github.com/ljharb/qs
|
|
4828
4970
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/request/node_modules/qs
|
|
4829
4971
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/request/node_modules/qs/LICENSE
|
|
4830
|
-
├─ qs@6.9.
|
|
4972
|
+
├─ qs@6.9.7
|
|
4831
4973
|
│ ├─ licenses: BSD-3-Clause
|
|
4832
4974
|
│ ├─ repository: https://github.com/ljharb/qs
|
|
4833
4975
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/qs
|
|
@@ -4860,7 +5002,15 @@
|
|
|
4860
5002
|
│ ├─ url: http://tjholowaychuk.com
|
|
4861
5003
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/range-parser
|
|
4862
5004
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/range-parser/LICENSE
|
|
4863
|
-
├─ raw-body@2.4.
|
|
5005
|
+
├─ raw-body@2.4.3
|
|
5006
|
+
│ ├─ licenses: MIT
|
|
5007
|
+
│ ├─ repository: https://github.com/stream-utils/raw-body
|
|
5008
|
+
│ ├─ publisher: Jonathan Ong
|
|
5009
|
+
│ ├─ email: me@jongleberry.com
|
|
5010
|
+
│ ├─ url: http://jongleberry.com
|
|
5011
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/express/node_modules/raw-body
|
|
5012
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/express/node_modules/raw-body/LICENSE
|
|
5013
|
+
├─ raw-body@2.5.1
|
|
4864
5014
|
│ ├─ licenses: MIT
|
|
4865
5015
|
│ ├─ repository: https://github.com/stream-utils/raw-body
|
|
4866
5016
|
│ ├─ publisher: Jonathan Ong
|
|
@@ -4868,7 +5018,7 @@
|
|
|
4868
5018
|
│ ├─ url: http://jongleberry.com
|
|
4869
5019
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/raw-body
|
|
4870
5020
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/raw-body/LICENSE
|
|
4871
|
-
├─ rc-config-loader@4.
|
|
5021
|
+
├─ rc-config-loader@4.1.0
|
|
4872
5022
|
│ ├─ licenses: MIT
|
|
4873
5023
|
│ ├─ repository: https://github.com/azu/rc-config-loader
|
|
4874
5024
|
│ ├─ publisher: azu
|
|
@@ -4906,6 +5056,12 @@
|
|
|
4906
5056
|
│ ├─ url: http://blog.izs.me/
|
|
4907
5057
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/read-package-json
|
|
4908
5058
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/read-package-json/LICENSE
|
|
5059
|
+
├─ read-package-json@5.0.1
|
|
5060
|
+
│ ├─ licenses: ISC
|
|
5061
|
+
│ ├─ repository: https://github.com/npm/read-package-json
|
|
5062
|
+
│ ├─ publisher: GitHub Inc.
|
|
5063
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/read-package-json
|
|
5064
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/pacote/node_modules/read-package-json/LICENSE
|
|
4909
5065
|
├─ readable-stream@3.6.0
|
|
4910
5066
|
│ ├─ licenses: MIT
|
|
4911
5067
|
│ ├─ repository: https://github.com/nodejs/readable-stream
|
|
@@ -4927,14 +5083,6 @@
|
|
|
4927
5083
|
│ ├─ url: thlorenz.com
|
|
4928
5084
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/readdirp
|
|
4929
5085
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/readdirp/LICENSE
|
|
4930
|
-
├─ redis-commands@1.7.0
|
|
4931
|
-
│ ├─ licenses: MIT
|
|
4932
|
-
│ ├─ repository: https://github.com/NodeRedis/redis-commands
|
|
4933
|
-
│ ├─ publisher: luin
|
|
4934
|
-
│ ├─ email: i@zihua.li
|
|
4935
|
-
│ ├─ url: http://zihua.li
|
|
4936
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/redis-commands
|
|
4937
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/redis-commands/LICENSE
|
|
4938
5086
|
├─ redis-errors@1.2.0
|
|
4939
5087
|
│ ├─ licenses: MIT
|
|
4940
5088
|
│ ├─ repository: https://github.com/NodeRedis/redis-errors
|
|
@@ -4975,13 +5123,6 @@
|
|
|
4975
5123
|
│ ├─ email: bn@cs.stanford.edu
|
|
4976
5124
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/regenerator-transform
|
|
4977
5125
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/regenerator-transform/LICENSE
|
|
4978
|
-
├─ regexpp@3.1.0
|
|
4979
|
-
│ ├─ licenses: MIT
|
|
4980
|
-
│ ├─ repository: https://github.com/mysticatea/regexpp
|
|
4981
|
-
│ ├─ publisher: Toru Nagashima
|
|
4982
|
-
│ ├─ url: https://github.com/mysticatea
|
|
4983
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es/node_modules/regexpp
|
|
4984
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/eslint-plugin-es/node_modules/regexpp/LICENSE
|
|
4985
5126
|
├─ regexpp@3.2.0
|
|
4986
5127
|
│ ├─ licenses: MIT
|
|
4987
5128
|
│ ├─ repository: https://github.com/mysticatea/regexpp
|
|
@@ -5170,7 +5311,7 @@
|
|
|
5170
5311
|
│ ├─ email: richard.a.harris@gmail.com
|
|
5171
5312
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/rollup-pluginutils
|
|
5172
5313
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/rollup-pluginutils/README.md
|
|
5173
|
-
├─ rollup@2.
|
|
5314
|
+
├─ rollup@2.70.2
|
|
5174
5315
|
│ ├─ licenses: MIT
|
|
5175
5316
|
│ ├─ repository: https://github.com/rollup/rollup
|
|
5176
5317
|
│ ├─ publisher: Rich Harris
|
|
@@ -5246,6 +5387,12 @@
|
|
|
5246
5387
|
├─ semver@7.3.5
|
|
5247
5388
|
│ ├─ licenses: ISC
|
|
5248
5389
|
│ ├─ repository: https://github.com/npm/node-semver
|
|
5390
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/update-notifier/node_modules/semver
|
|
5391
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/update-notifier/node_modules/semver/LICENSE
|
|
5392
|
+
├─ semver@7.3.7
|
|
5393
|
+
│ ├─ licenses: ISC
|
|
5394
|
+
│ ├─ repository: https://github.com/npm/node-semver
|
|
5395
|
+
│ ├─ publisher: GitHub Inc.
|
|
5249
5396
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/@npmcli/fs/node_modules/semver
|
|
5250
5397
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/@npmcli/fs/node_modules/semver/LICENSE
|
|
5251
5398
|
├─ send@0.17.2
|
|
@@ -5319,6 +5466,13 @@
|
|
|
5319
5466
|
│ ├─ email: ben@npmjs.com
|
|
5320
5467
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/signal-exit
|
|
5321
5468
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/signal-exit/LICENSE.txt
|
|
5469
|
+
├─ signal-exit@3.0.7
|
|
5470
|
+
│ ├─ licenses: ISC
|
|
5471
|
+
│ ├─ repository: https://github.com/tapjs/signal-exit
|
|
5472
|
+
│ ├─ publisher: Ben Coe
|
|
5473
|
+
│ ├─ email: ben@npmjs.com
|
|
5474
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/gauge/node_modules/signal-exit
|
|
5475
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/gauge/node_modules/signal-exit/LICENSE.txt
|
|
5322
5476
|
├─ sisteransi@1.0.5
|
|
5323
5477
|
│ ├─ licenses: MIT
|
|
5324
5478
|
│ ├─ repository: https://github.com/terkelg/sisteransi
|
|
@@ -5396,7 +5550,7 @@
|
|
|
5396
5550
|
│ ├─ publisher: Facundo Olano and Martín Paulucci
|
|
5397
5551
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/socketio-auth
|
|
5398
5552
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/socketio-auth/README.md
|
|
5399
|
-
├─ socks-proxy-agent@6.
|
|
5553
|
+
├─ socks-proxy-agent@6.2.0
|
|
5400
5554
|
│ ├─ licenses: MIT
|
|
5401
5555
|
│ ├─ repository: https://github.com/TooTallNate/node-socks-proxy-agent
|
|
5402
5556
|
│ ├─ publisher: Nathan Rajlich
|
|
@@ -5521,11 +5675,10 @@
|
|
|
5521
5675
|
│ ├─ publisher: Joyent, Inc
|
|
5522
5676
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/sshpk
|
|
5523
5677
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/sshpk/LICENSE
|
|
5524
|
-
├─ ssri@
|
|
5678
|
+
├─ ssri@9.0.0
|
|
5525
5679
|
│ ├─ licenses: ISC
|
|
5526
5680
|
│ ├─ repository: https://github.com/npm/ssri
|
|
5527
|
-
│ ├─ publisher:
|
|
5528
|
-
│ ├─ email: kzm@sykosomatic.org
|
|
5681
|
+
│ ├─ publisher: GitHub Inc.
|
|
5529
5682
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/ssri
|
|
5530
5683
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/ssri/LICENSE.md
|
|
5531
5684
|
├─ standard-as-callback@2.1.0
|
|
@@ -5548,6 +5701,11 @@
|
|
|
5548
5701
|
│ ├─ repository: https://github.com/jshttp/statuses
|
|
5549
5702
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/statuses
|
|
5550
5703
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/statuses/LICENSE
|
|
5704
|
+
├─ statuses@2.0.1
|
|
5705
|
+
│ ├─ licenses: MIT
|
|
5706
|
+
│ ├─ repository: https://github.com/jshttp/statuses
|
|
5707
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/statuses
|
|
5708
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/body-parser/node_modules/statuses/LICENSE
|
|
5551
5709
|
├─ string-width@3.1.0
|
|
5552
5710
|
│ ├─ licenses: MIT
|
|
5553
5711
|
│ ├─ repository: https://github.com/sindresorhus/string-width
|
|
@@ -5686,7 +5844,7 @@
|
|
|
5686
5844
|
│ ├─ email: ljharb@gmail.com
|
|
5687
5845
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/supports-preserve-symlinks-flag
|
|
5688
5846
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/supports-preserve-symlinks-flag/LICENSE
|
|
5689
|
-
├─ swagger-jsdoc@6.1
|
|
5847
|
+
├─ swagger-jsdoc@6.2.1
|
|
5690
5848
|
│ ├─ licenses: MIT
|
|
5691
5849
|
│ ├─ repository: https://github.com/Surnet/swagger-jsdoc
|
|
5692
5850
|
│ ├─ publisher: https://github.com/Surnet/swagger-jsdoc/graphs/contributors
|
|
@@ -5786,7 +5944,7 @@
|
|
|
5786
5944
|
│ ├─ email: xiongc05@gmail.com
|
|
5787
5945
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/truncate-utf8-bytes
|
|
5788
5946
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/truncate-utf8-bytes/README.md
|
|
5789
|
-
├─ tsconfig-paths@3.
|
|
5947
|
+
├─ tsconfig-paths@3.14.1
|
|
5790
5948
|
│ ├─ licenses: MIT
|
|
5791
5949
|
│ ├─ repository: https://github.com/dividab/tsconfig-paths
|
|
5792
5950
|
│ ├─ publisher: Jonas Kello
|
|
@@ -6019,15 +6177,15 @@
|
|
|
6019
6177
|
│ ├─ url: https://kemitchell.com
|
|
6020
6178
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/validate-npm-package-license
|
|
6021
6179
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/validate-npm-package-license/LICENSE
|
|
6022
|
-
├─ validate-npm-package-name@
|
|
6180
|
+
├─ validate-npm-package-name@4.0.0
|
|
6023
6181
|
│ ├─ licenses: ISC
|
|
6024
6182
|
│ ├─ repository: https://github.com/npm/validate-npm-package-name
|
|
6025
|
-
│ ├─ publisher:
|
|
6183
|
+
│ ├─ publisher: GitHub Inc.
|
|
6026
6184
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/validate-npm-package-name
|
|
6027
6185
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/validate-npm-package-name/LICENSE
|
|
6028
|
-
├─ validator@
|
|
6186
|
+
├─ validator@13.7.0
|
|
6029
6187
|
│ ├─ licenses: MIT
|
|
6030
|
-
│ ├─ repository: https://github.com/
|
|
6188
|
+
│ ├─ repository: https://github.com/validatorjs/validator.js
|
|
6031
6189
|
│ ├─ publisher: Chris O'Hara
|
|
6032
6190
|
│ ├─ email: cohara87@gmail.com
|
|
6033
6191
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/validator
|
|
@@ -6044,7 +6202,7 @@
|
|
|
6044
6202
|
│ ├─ repository: https://github.com/davepacheco/node-verror
|
|
6045
6203
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/verror
|
|
6046
6204
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/verror/LICENSE
|
|
6047
|
-
├─ vm2@3.9.
|
|
6205
|
+
├─ vm2@3.9.9
|
|
6048
6206
|
│ ├─ licenses: MIT
|
|
6049
6207
|
│ ├─ repository: https://github.com/patriksimek/vm2
|
|
6050
6208
|
│ ├─ publisher: Patrik Simek
|
|
@@ -6177,7 +6335,7 @@
|
|
|
6177
6335
|
│ ├─ url: sindresorhus.com
|
|
6178
6336
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/xdg-basedir
|
|
6179
6337
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/xdg-basedir/license
|
|
6180
|
-
├─ xlsx@0.18.
|
|
6338
|
+
├─ xlsx@0.18.5
|
|
6181
6339
|
│ ├─ licenses: Apache-2.0
|
|
6182
6340
|
│ ├─ repository: https://github.com/SheetJS/sheetjs
|
|
6183
6341
|
│ ├─ publisher: sheetjs
|
|
@@ -6223,8 +6381,8 @@
|
|
|
6223
6381
|
│ ├─ repository: https://github.com/eemeli/yaml
|
|
6224
6382
|
│ ├─ publisher: Eemeli Aro
|
|
6225
6383
|
│ ├─ email: eemeli@gmail.com
|
|
6226
|
-
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/yaml
|
|
6227
|
-
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/yaml/LICENSE
|
|
6384
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/npm-check-updates/node_modules/yaml
|
|
6385
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/npm-check-updates/node_modules/yaml/LICENSE
|
|
6228
6386
|
├─ yaml@2.0.0-1
|
|
6229
6387
|
│ ├─ licenses: ISC
|
|
6230
6388
|
│ ├─ repository: https://github.com/eemeli/yaml
|
|
@@ -6232,6 +6390,13 @@
|
|
|
6232
6390
|
│ ├─ email: eemeli@gmail.com
|
|
6233
6391
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/swagger-jsdoc/node_modules/yaml
|
|
6234
6392
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/swagger-jsdoc/node_modules/yaml/LICENSE
|
|
6393
|
+
├─ yaml@2.0.1
|
|
6394
|
+
│ ├─ licenses: ISC
|
|
6395
|
+
│ ├─ repository: https://github.com/eemeli/yaml
|
|
6396
|
+
│ ├─ publisher: Eemeli Aro
|
|
6397
|
+
│ ├─ email: eemeli@gmail.com
|
|
6398
|
+
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/yaml
|
|
6399
|
+
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/yaml/LICENSE
|
|
6235
6400
|
├─ yargs-parser@18.1.3
|
|
6236
6401
|
│ ├─ licenses: ISC
|
|
6237
6402
|
│ ├─ repository: https://github.com/yargs/yargs-parser
|
|
@@ -6277,7 +6442,7 @@
|
|
|
6277
6442
|
│ ├─ url: https://sindresorhus.com
|
|
6278
6443
|
│ ├─ path: /home/ftreml/dev/botium-core/node_modules/yocto-queue
|
|
6279
6444
|
│ └─ licenseFile: /home/ftreml/dev/botium-core/node_modules/yocto-queue/license
|
|
6280
|
-
└─ z-schema@4.2.
|
|
6445
|
+
└─ z-schema@4.2.4
|
|
6281
6446
|
├─ licenses: MIT
|
|
6282
6447
|
├─ repository: https://github.com/zaggino/z-schema
|
|
6283
6448
|
├─ path: /home/ftreml/dev/botium-core/node_modules/z-schema
|