@skyramp/mcp 0.2.7 → 0.2.8
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/build/index.js +5 -2
- package/build/prompts/enhance-assertions/uiAssertionsPrompt.js +24 -5
- package/build/prompts/sut-setup/modes/adaptWorkflowPrompt.d.ts +2 -0
- package/build/prompts/sut-setup/modes/adaptWorkflowPrompt.js +114 -0
- package/build/prompts/sut-setup/modes/dockerComposePrompt.d.ts +2 -0
- package/build/prompts/sut-setup/modes/dockerComposePrompt.js +292 -0
- package/build/prompts/sut-setup/shared.d.ts +39 -0
- package/build/prompts/sut-setup/shared.js +132 -0
- package/build/prompts/test-maintenance/driftAnalysisSections.js +9 -3
- package/build/prompts/test-recommendation/analysisOutputPrompt.js +1 -1
- package/build/prompts/test-recommendation/diffExecutionPlan.js +76 -2
- package/build/prompts/test-recommendation/test-recommendation-prompt.test.js +91 -0
- package/build/prompts/testbot/testbot-prompts.d.ts +16 -1
- package/build/prompts/testbot/testbot-prompts.js +113 -22
- package/build/prompts/testbot/testbot-prompts.test.js +95 -45
- package/build/resources/sutSetupResource.d.ts +2 -0
- package/build/resources/sutSetupResource.js +45 -0
- package/build/resources/testbotResource.js +2 -2
- package/build/services/TestDiscoveryService.d.ts +2 -2
- package/build/services/TestDiscoveryService.js +22 -12
- package/build/services/TestExecutionService.d.ts +10 -1
- package/build/services/TestExecutionService.js +158 -26
- package/build/services/TestExecutionService.test.js +306 -0
- package/build/tools/executeSkyrampTestTool.js +26 -7
- package/build/tools/generate-tests/generateBatchScenarioRestTool.js +1 -1
- package/build/tools/submitReportTool.d.ts +10 -0
- package/build/tools/submitReportTool.js +106 -39
- package/build/tools/submitReportTool.test.js +296 -50
- package/build/tools/test-management/actionsTool.js +21 -7
- package/build/tools/test-management/analyzeChangesTool.d.ts +1 -1
- package/build/tools/test-management/analyzeChangesTool.js +106 -41
- package/build/tools/test-management/analyzeChangesTool.test.js +21 -41
- package/build/tools/test-management/analyzeTestHealthTool.js +16 -9
- package/build/tools/workspace/initializeWorkspaceTool.js +39 -22
- package/build/tools/workspace/serviceUpsert.d.ts +12 -0
- package/build/tools/workspace/serviceUpsert.js +23 -0
- package/build/tools/workspace/serviceUpsert.test.d.ts +1 -0
- package/build/tools/workspace/serviceUpsert.test.js +50 -0
- package/build/types/TestAnalysis.d.ts +2 -1
- package/build/types/TestExecution.d.ts +12 -2
- package/build/types/TestExecution.js +11 -1
- package/build/types/TestbotReport.d.ts +68 -0
- package/build/types/TestbotReport.js +1 -0
- package/build/types/index.d.ts +4 -0
- package/build/types/index.js +3 -0
- package/build/utils/AnalysisStateManager.d.ts +61 -1
- package/build/utils/AnalysisStateManager.js +144 -3
- package/build/utils/AnalysisStateManager.test.js +98 -0
- package/build/utils/docker.test.js +1 -1
- package/build/utils/routeParsers.d.ts +0 -10
- package/build/utils/routeParsers.js +31 -38
- package/build/utils/scenarioDrafting.d.ts +1 -1
- package/build/utils/scenarioDrafting.js +23 -1
- package/build/utils/utils.d.ts +7 -1
- package/build/utils/utils.js +10 -0
- package/build/utils/versions.d.ts +3 -3
- package/build/utils/versions.js +1 -1
- package/build/workspace/workspace.d.ts +10 -10
- package/build/workspace/workspace.js +7 -7
- package/build/workspace/workspace.test.js +6 -6
- package/node_modules/playwright/lib/mcp/skyramp/loadTraceTool.js +31 -13
- package/node_modules/playwright/lib/mcp/skyramp/traceRecordingBackend.js +88 -15
- package/node_modules/playwright/lib/mcp/test/skyRampExport.js +4 -3
- package/node_modules/playwright/node_modules/playwright-core/ThirdPartyNotices.txt +23 -126
- package/node_modules/playwright/node_modules/playwright-core/lib/generated/injectedScriptSource.js +1 -1
- package/node_modules/playwright/node_modules/playwright-core/lib/server/recorder/recorderApp.js +79 -19
- package/node_modules/playwright/node_modules/playwright-core/lib/server/recorder/skyramp/aliasRemapper.js +84 -0
- package/node_modules/playwright/node_modules/playwright-core/lib/server/recorder/skyramp/replayEngine.js +15 -4
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/{codeMirrorModule-CPZKmjFR.js → codeMirrorModule-D0BjbCb7.js} +1 -1
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/index-lvTRGFx-.js +193 -0
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/index.html +1 -1
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/assets/{codeMirrorModule-B0JOjboO.js → codeMirrorModule-Cqp3cwEJ.js} +1 -1
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/assets/{defaultSettingsView-1anWeyDf.js → defaultSettingsView-CYf9adZh.js} +79 -79
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/{index.Cc5029a3.js → index.B_7ywgmr.js} +1 -1
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/index.html +2 -2
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +2 -2
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/{uiMode.Wo5yvvVh.js → uiMode.u4_8VnCV.js} +1 -1
- package/node_modules/playwright/node_modules/playwright-core/package.json +1 -1
- package/node_modules/playwright/node_modules/playwright-core/src/generated/injectedScriptSource.ts +1 -1
- package/node_modules/playwright/node_modules/playwright-core/src/server/recorder/recorderApp.ts +129 -43
- package/node_modules/playwright/node_modules/playwright-core/src/server/recorder/skyramp/aliasRemapper.ts +119 -0
- package/node_modules/playwright/node_modules/playwright-core/src/server/recorder/skyramp/replayEngine.ts +33 -10
- package/node_modules/playwright/package.json +1 -1
- package/package.json +10 -3
- package/node_modules/playwright/node_modules/playwright-core/bundles/mcp/node_modules/.bin/node-which +0 -52
- package/node_modules/playwright/node_modules/playwright-core/bundles/utils/node_modules/.bin/is-docker +0 -5
- package/node_modules/playwright/node_modules/playwright-core/bundles/utils/node_modules/.bin/mime +0 -46
- package/node_modules/playwright/node_modules/playwright-core/bundles/utils/node_modules/.bin/yaml +0 -11
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/recorder/assets/index-CsgPR2wy.js +0 -193
- package/node_modules/playwright/node_modules/playwright-core/lib/vite/traceViewer/index.CP3Y8Zsb.js +0 -2
|
@@ -46,10 +46,10 @@ This project incorporates components from the projects listed below. The origina
|
|
|
46
46
|
- etag@1.8.1 (https://github.com/jshttp/etag)
|
|
47
47
|
- eventsource-parser@3.0.3 (https://github.com/rexxars/eventsource-parser)
|
|
48
48
|
- eventsource@3.0.7 (git://git@github.com/EventSource/eventsource)
|
|
49
|
-
- express-rate-limit@8.
|
|
49
|
+
- express-rate-limit@8.5.2 (https://github.com/express-rate-limit/express-rate-limit)
|
|
50
50
|
- express@5.2.1 (https://github.com/expressjs/express)
|
|
51
51
|
- fast-deep-equal@3.1.3 (https://github.com/epoberezkin/fast-deep-equal)
|
|
52
|
-
- fast-uri@3.1.
|
|
52
|
+
- fast-uri@3.1.2 (https://github.com/fastify/fast-uri)
|
|
53
53
|
- finalhandler@2.1.1 (https://github.com/pillarjs/finalhandler)
|
|
54
54
|
- forwarded@0.2.0 (https://github.com/jshttp/forwarded)
|
|
55
55
|
- fresh@2.0.0 (https://github.com/jshttp/fresh)
|
|
@@ -61,13 +61,12 @@ This project incorporates components from the projects listed below. The origina
|
|
|
61
61
|
- graceful-fs@4.2.10 (https://github.com/isaacs/node-graceful-fs)
|
|
62
62
|
- has-symbols@1.1.0 (https://github.com/inspect-js/has-symbols)
|
|
63
63
|
- hasown@2.0.3 (https://github.com/inspect-js/hasOwn)
|
|
64
|
-
- hono@4.12.
|
|
64
|
+
- hono@4.12.23 (https://github.com/honojs/hono)
|
|
65
65
|
- http-errors@2.0.1 (https://github.com/jshttp/http-errors)
|
|
66
66
|
- https-proxy-agent@7.0.6 (https://github.com/TooTallNate/proxy-agents)
|
|
67
67
|
- iconv-lite@0.7.2 (https://github.com/pillarjs/iconv-lite)
|
|
68
68
|
- inherits@2.0.4 (https://github.com/isaacs/inherits)
|
|
69
|
-
- ip-address@10.
|
|
70
|
-
- ip-address@9.0.5 (https://github.com/beaugunderson/ip-address)
|
|
69
|
+
- ip-address@10.2.0 (https://github.com/beaugunderson/ip-address)
|
|
71
70
|
- ipaddr.js@1.9.1 (https://github.com/whitequark/ipaddr.js)
|
|
72
71
|
- is-docker@2.2.1 (https://github.com/sindresorhus/is-docker)
|
|
73
72
|
- is-promise@4.0.0 (https://github.com/then/is-promise)
|
|
@@ -75,7 +74,6 @@ This project incorporates components from the projects listed below. The origina
|
|
|
75
74
|
- isexe@2.0.0 (https://github.com/isaacs/isexe)
|
|
76
75
|
- jose@6.1.3 (https://github.com/panva/jose)
|
|
77
76
|
- jpeg-js@0.4.4 (https://github.com/eugeneware/jpeg-js)
|
|
78
|
-
- jsbn@1.1.0 (https://github.com/andyperlitch/jsbn)
|
|
79
77
|
- json-schema-traverse@1.0.0 (https://github.com/epoberezkin/json-schema-traverse)
|
|
80
78
|
- json-schema-typed@8.0.2 (https://github.com/RemyRylan/json-schema-typed)
|
|
81
79
|
- math-intrinsics@1.1.0 (https://github.com/es-shims/math-intrinsics)
|
|
@@ -103,7 +101,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
103
101
|
- proxy-addr@2.0.7 (https://github.com/jshttp/proxy-addr)
|
|
104
102
|
- proxy-from-env@1.1.0 (https://github.com/Rob--W/proxy-from-env)
|
|
105
103
|
- pump@3.0.2 (https://github.com/mafintosh/pump)
|
|
106
|
-
- qs@6.15.
|
|
104
|
+
- qs@6.15.2 (https://github.com/ljharb/qs)
|
|
107
105
|
- range-parser@1.2.1 (https://github.com/jshttp/range-parser)
|
|
108
106
|
- raw-body@3.0.2 (https://github.com/stream-utils/raw-body)
|
|
109
107
|
- require-from-string@2.0.2 (https://github.com/floatdrop/require-from-string)
|
|
@@ -122,8 +120,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
122
120
|
- signal-exit@3.0.7 (https://github.com/tapjs/signal-exit)
|
|
123
121
|
- smart-buffer@4.2.0 (https://github.com/JoshGlazebrook/smart-buffer)
|
|
124
122
|
- socks-proxy-agent@8.0.5 (https://github.com/TooTallNate/proxy-agents)
|
|
125
|
-
- socks@2.8.
|
|
126
|
-
- sprintf-js@1.1.3 (https://github.com/alexei/sprintf.js)
|
|
123
|
+
- socks@2.8.9 (https://github.com/JoshGlazebrook/socks)
|
|
127
124
|
- statuses@2.0.2 (https://github.com/jshttp/statuses)
|
|
128
125
|
- toidentifier@1.0.1 (https://github.com/component/toidentifier)
|
|
129
126
|
- type-is@2.0.1 (https://github.com/jshttp/type-is)
|
|
@@ -131,7 +128,7 @@ This project incorporates components from the projects listed below. The origina
|
|
|
131
128
|
- vary@1.1.2 (https://github.com/jshttp/vary)
|
|
132
129
|
- which@2.0.2 (https://github.com/isaacs/node-which)
|
|
133
130
|
- wrappy@1.0.2 (https://github.com/npm/wrappy)
|
|
134
|
-
- ws@8.
|
|
131
|
+
- ws@8.21.0 (https://github.com/websockets/ws)
|
|
135
132
|
- yaml@2.8.3 (https://github.com/eemeli/yaml)
|
|
136
133
|
- yauzl@3.2.1 (https://github.com/thejoshwolfe/yauzl)
|
|
137
134
|
- yazl@2.5.1 (https://github.com/thejoshwolfe/yazl)
|
|
@@ -1423,7 +1420,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
1423
1420
|
=========================================
|
|
1424
1421
|
END OF eventsource@3.0.7 AND INFORMATION
|
|
1425
1422
|
|
|
1426
|
-
%% express-rate-limit@8.
|
|
1423
|
+
%% express-rate-limit@8.5.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1427
1424
|
=========================================
|
|
1428
1425
|
# MIT License
|
|
1429
1426
|
|
|
@@ -1446,7 +1443,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
1446
1443
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1447
1444
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1448
1445
|
=========================================
|
|
1449
|
-
END OF express-rate-limit@8.
|
|
1446
|
+
END OF express-rate-limit@8.5.2 AND INFORMATION
|
|
1450
1447
|
|
|
1451
1448
|
%% express@5.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1452
1449
|
=========================================
|
|
@@ -1503,14 +1500,12 @@ SOFTWARE.
|
|
|
1503
1500
|
=========================================
|
|
1504
1501
|
END OF fast-deep-equal@3.1.3 AND INFORMATION
|
|
1505
1502
|
|
|
1506
|
-
%% fast-uri@3.1.
|
|
1503
|
+
%% fast-uri@3.1.2 NOTICES AND INFORMATION BEGIN HERE
|
|
1507
1504
|
=========================================
|
|
1508
1505
|
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
|
|
1509
|
-
Copyright (c) 2021-present The Fastify team
|
|
1506
|
+
Copyright (c) 2021-present The Fastify team <https://github.com/fastify/fastify#team>
|
|
1510
1507
|
All rights reserved.
|
|
1511
1508
|
|
|
1512
|
-
The Fastify team members are listed at https://github.com/fastify/fastify#team.
|
|
1513
|
-
|
|
1514
1509
|
Redistribution and use in source and binary forms, with or without
|
|
1515
1510
|
modification, are permitted provided that the following conditions are met:
|
|
1516
1511
|
* Redistributions of source code must retain the above copyright
|
|
@@ -1538,7 +1533,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1538
1533
|
The complete list of contributors can be found at:
|
|
1539
1534
|
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
1540
1535
|
=========================================
|
|
1541
|
-
END OF fast-uri@3.1.
|
|
1536
|
+
END OF fast-uri@3.1.2 AND INFORMATION
|
|
1542
1537
|
|
|
1543
1538
|
%% finalhandler@2.1.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1544
1539
|
=========================================
|
|
@@ -1810,7 +1805,7 @@ SOFTWARE.
|
|
|
1810
1805
|
=========================================
|
|
1811
1806
|
END OF hasown@2.0.3 AND INFORMATION
|
|
1812
1807
|
|
|
1813
|
-
%% hono@4.12.
|
|
1808
|
+
%% hono@4.12.23 NOTICES AND INFORMATION BEGIN HERE
|
|
1814
1809
|
=========================================
|
|
1815
1810
|
MIT License
|
|
1816
1811
|
|
|
@@ -1834,7 +1829,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1834
1829
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1835
1830
|
SOFTWARE.
|
|
1836
1831
|
=========================================
|
|
1837
|
-
END OF hono@4.12.
|
|
1832
|
+
END OF hono@4.12.23 AND INFORMATION
|
|
1838
1833
|
|
|
1839
1834
|
%% http-errors@2.0.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1840
1835
|
=========================================
|
|
@@ -1935,7 +1930,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
1935
1930
|
=========================================
|
|
1936
1931
|
END OF inherits@2.0.4 AND INFORMATION
|
|
1937
1932
|
|
|
1938
|
-
%% ip-address@10.
|
|
1933
|
+
%% ip-address@10.2.0 NOTICES AND INFORMATION BEGIN HERE
|
|
1939
1934
|
=========================================
|
|
1940
1935
|
Copyright (C) 2011 by Beau Gunderson
|
|
1941
1936
|
|
|
@@ -1957,31 +1952,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1957
1952
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1958
1953
|
THE SOFTWARE.
|
|
1959
1954
|
=========================================
|
|
1960
|
-
END OF ip-address@10.
|
|
1961
|
-
|
|
1962
|
-
%% ip-address@9.0.5 NOTICES AND INFORMATION BEGIN HERE
|
|
1963
|
-
=========================================
|
|
1964
|
-
Copyright (C) 2011 by Beau Gunderson
|
|
1965
|
-
|
|
1966
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1967
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1968
|
-
in the Software without restriction, including without limitation the rights
|
|
1969
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1970
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1971
|
-
furnished to do so, subject to the following conditions:
|
|
1972
|
-
|
|
1973
|
-
The above copyright notice and this permission notice shall be included in
|
|
1974
|
-
all copies or substantial portions of the Software.
|
|
1975
|
-
|
|
1976
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1977
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1978
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1979
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1980
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1981
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1982
|
-
THE SOFTWARE.
|
|
1983
|
-
=========================================
|
|
1984
|
-
END OF ip-address@9.0.5 AND INFORMATION
|
|
1955
|
+
END OF ip-address@10.2.0 AND INFORMATION
|
|
1985
1956
|
|
|
1986
1957
|
%% ipaddr.js@1.9.1 NOTICES AND INFORMATION BEGIN HERE
|
|
1987
1958
|
=========================================
|
|
@@ -2135,51 +2106,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2135
2106
|
=========================================
|
|
2136
2107
|
END OF jpeg-js@0.4.4 AND INFORMATION
|
|
2137
2108
|
|
|
2138
|
-
%% jsbn@1.1.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2139
|
-
=========================================
|
|
2140
|
-
Licensing
|
|
2141
|
-
---------
|
|
2142
|
-
|
|
2143
|
-
This software is covered under the following copyright:
|
|
2144
|
-
|
|
2145
|
-
/*
|
|
2146
|
-
* Copyright (c) 2003-2005 Tom Wu
|
|
2147
|
-
* All Rights Reserved.
|
|
2148
|
-
*
|
|
2149
|
-
* Permission is hereby granted, free of charge, to any person obtaining
|
|
2150
|
-
* a copy of this software and associated documentation files (the
|
|
2151
|
-
* "Software"), to deal in the Software without restriction, including
|
|
2152
|
-
* without limitation the rights to use, copy, modify, merge, publish,
|
|
2153
|
-
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
2154
|
-
* permit persons to whom the Software is furnished to do so, subject to
|
|
2155
|
-
* the following conditions:
|
|
2156
|
-
*
|
|
2157
|
-
* The above copyright notice and this permission notice shall be
|
|
2158
|
-
* included in all copies or substantial portions of the Software.
|
|
2159
|
-
*
|
|
2160
|
-
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
2161
|
-
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
2162
|
-
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
2163
|
-
*
|
|
2164
|
-
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
|
|
2165
|
-
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
|
|
2166
|
-
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
|
|
2167
|
-
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
|
|
2168
|
-
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2169
|
-
*
|
|
2170
|
-
* In addition, the following condition applies:
|
|
2171
|
-
*
|
|
2172
|
-
* All redistributions must retain an intact copy of this copyright notice
|
|
2173
|
-
* and disclaimer.
|
|
2174
|
-
*/
|
|
2175
|
-
|
|
2176
|
-
Address all questions regarding this license to:
|
|
2177
|
-
|
|
2178
|
-
Tom Wu
|
|
2179
|
-
tjw@cs.Stanford.EDU
|
|
2180
|
-
=========================================
|
|
2181
|
-
END OF jsbn@1.1.0 AND INFORMATION
|
|
2182
|
-
|
|
2183
2109
|
%% json-schema-traverse@1.0.0 NOTICES AND INFORMATION BEGIN HERE
|
|
2184
2110
|
=========================================
|
|
2185
2111
|
MIT License
|
|
@@ -2886,7 +2812,7 @@ THE SOFTWARE.
|
|
|
2886
2812
|
=========================================
|
|
2887
2813
|
END OF pump@3.0.2 AND INFORMATION
|
|
2888
2814
|
|
|
2889
|
-
%% qs@6.15.
|
|
2815
|
+
%% qs@6.15.2 NOTICES AND INFORMATION BEGIN HERE
|
|
2890
2816
|
=========================================
|
|
2891
2817
|
BSD 3-Clause License
|
|
2892
2818
|
|
|
@@ -2918,7 +2844,7 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
2918
2844
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2919
2845
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2920
2846
|
=========================================
|
|
2921
|
-
END OF qs@6.15.
|
|
2847
|
+
END OF qs@6.15.2 AND INFORMATION
|
|
2922
2848
|
|
|
2923
2849
|
%% range-parser@1.2.1 NOTICES AND INFORMATION BEGIN HERE
|
|
2924
2850
|
=========================================
|
|
@@ -3362,7 +3288,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3362
3288
|
=========================================
|
|
3363
3289
|
END OF socks-proxy-agent@8.0.5 AND INFORMATION
|
|
3364
3290
|
|
|
3365
|
-
%% socks@2.8.
|
|
3291
|
+
%% socks@2.8.9 NOTICES AND INFORMATION BEGIN HERE
|
|
3366
3292
|
=========================================
|
|
3367
3293
|
The MIT License (MIT)
|
|
3368
3294
|
|
|
@@ -3385,36 +3311,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
3385
3311
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3386
3312
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3387
3313
|
=========================================
|
|
3388
|
-
END OF socks@2.8.
|
|
3389
|
-
|
|
3390
|
-
%% sprintf-js@1.1.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3391
|
-
=========================================
|
|
3392
|
-
Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>
|
|
3393
|
-
All rights reserved.
|
|
3394
|
-
|
|
3395
|
-
Redistribution and use in source and binary forms, with or without
|
|
3396
|
-
modification, are permitted provided that the following conditions are met:
|
|
3397
|
-
* Redistributions of source code must retain the above copyright
|
|
3398
|
-
notice, this list of conditions and the following disclaimer.
|
|
3399
|
-
* Redistributions in binary form must reproduce the above copyright
|
|
3400
|
-
notice, this list of conditions and the following disclaimer in the
|
|
3401
|
-
documentation and/or other materials provided with the distribution.
|
|
3402
|
-
* Neither the name of this software nor the names of its contributors may be
|
|
3403
|
-
used to endorse or promote products derived from this software without
|
|
3404
|
-
specific prior written permission.
|
|
3405
|
-
|
|
3406
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
3407
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
3408
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3409
|
-
DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
3410
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
3411
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
3412
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
3413
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
3414
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
3415
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3416
|
-
=========================================
|
|
3417
|
-
END OF sprintf-js@1.1.3 AND INFORMATION
|
|
3314
|
+
END OF socks@2.8.9 AND INFORMATION
|
|
3418
3315
|
|
|
3419
3316
|
%% statuses@2.0.2 NOTICES AND INFORMATION BEGIN HERE
|
|
3420
3317
|
=========================================
|
|
@@ -3591,7 +3488,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
3591
3488
|
=========================================
|
|
3592
3489
|
END OF wrappy@1.0.2 AND INFORMATION
|
|
3593
3490
|
|
|
3594
|
-
%% ws@8.
|
|
3491
|
+
%% ws@8.21.0 NOTICES AND INFORMATION BEGIN HERE
|
|
3595
3492
|
=========================================
|
|
3596
3493
|
Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
3597
3494
|
Copyright (c) 2013 Arnout Kazemier and contributors
|
|
@@ -3614,7 +3511,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
3614
3511
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3615
3512
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3616
3513
|
=========================================
|
|
3617
|
-
END OF ws@8.
|
|
3514
|
+
END OF ws@8.21.0 AND INFORMATION
|
|
3618
3515
|
|
|
3619
3516
|
%% yaml@2.8.3 NOTICES AND INFORMATION BEGIN HERE
|
|
3620
3517
|
=========================================
|
|
@@ -3760,6 +3657,6 @@ END OF zod@4.3.5 AND INFORMATION
|
|
|
3760
3657
|
|
|
3761
3658
|
SUMMARY BEGIN HERE
|
|
3762
3659
|
=========================================
|
|
3763
|
-
Total Packages:
|
|
3660
|
+
Total Packages: 131
|
|
3764
3661
|
=========================================
|
|
3765
3662
|
END OF SUMMARY
|