beth-copilot 1.0.14 → 1.0.16
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/CHANGELOG.md +195 -177
- package/README.md +528 -185
- package/bin/cli.js +47 -0
- package/dist/cli/commands/doctor.e2e.test.d.ts +8 -0
- package/dist/cli/commands/doctor.e2e.test.d.ts.map +1 -0
- package/dist/cli/commands/doctor.e2e.test.js +428 -0
- package/dist/cli/commands/doctor.e2e.test.js.map +1 -0
- package/dist/cli/commands/doctor.test.js +1 -1
- package/dist/cli/commands/help.e2e.test.d.ts +9 -0
- package/dist/cli/commands/help.e2e.test.d.ts.map +1 -0
- package/dist/cli/commands/help.e2e.test.js +150 -0
- package/dist/cli/commands/help.e2e.test.js.map +1 -0
- package/dist/cli/commands/init.test.d.ts +6 -0
- package/dist/cli/commands/init.test.d.ts.map +1 -0
- package/dist/cli/commands/init.test.js +289 -0
- package/dist/cli/commands/init.test.js.map +1 -0
- package/dist/cli/commands/mcp.e2e.test.d.ts +9 -0
- package/dist/cli/commands/mcp.e2e.test.d.ts.map +1 -0
- package/dist/cli/commands/mcp.e2e.test.js +139 -0
- package/dist/cli/commands/mcp.e2e.test.js.map +1 -0
- package/dist/cli/commands/pipeline.e2e.test.d.ts +9 -0
- package/dist/cli/commands/pipeline.e2e.test.d.ts.map +1 -0
- package/dist/cli/commands/pipeline.e2e.test.js +192 -0
- package/dist/cli/commands/pipeline.e2e.test.js.map +1 -0
- package/dist/cli/commands/quickstart.test.d.ts +6 -0
- package/dist/cli/commands/quickstart.test.d.ts.map +1 -0
- package/dist/cli/commands/quickstart.test.js +232 -0
- package/dist/cli/commands/quickstart.test.js.map +1 -0
- package/dist/core/agents/frontmatter.test.d.ts +8 -0
- package/dist/core/agents/frontmatter.test.d.ts.map +1 -0
- package/dist/core/agents/frontmatter.test.js +589 -0
- package/dist/core/agents/frontmatter.test.js.map +1 -0
- package/dist/core/agents/handoffs.test.d.ts +8 -0
- package/dist/core/agents/handoffs.test.d.ts.map +1 -0
- package/dist/core/agents/handoffs.test.js +320 -0
- package/dist/core/agents/handoffs.test.js.map +1 -0
- package/dist/core/agents/loader.test.js +1 -1
- package/dist/core/agents/suite.test.d.ts +8 -0
- package/dist/core/agents/suite.test.d.ts.map +1 -0
- package/dist/core/agents/suite.test.js +207 -0
- package/dist/core/agents/suite.test.js.map +1 -0
- package/dist/core/agents/tools.test.d.ts +8 -0
- package/dist/core/agents/tools.test.d.ts.map +1 -0
- package/dist/core/agents/tools.test.js +332 -0
- package/dist/core/agents/tools.test.js.map +1 -0
- package/dist/core/context.d.ts +171 -0
- package/dist/core/context.d.ts.map +1 -0
- package/dist/core/context.js +353 -0
- package/dist/core/context.js.map +1 -0
- package/dist/core/context.test.d.ts +8 -0
- package/dist/core/context.test.d.ts.map +1 -0
- package/dist/core/context.test.js +253 -0
- package/dist/core/context.test.js.map +1 -0
- package/dist/core/handoffs.d.ts +151 -0
- package/dist/core/handoffs.d.ts.map +1 -0
- package/dist/core/handoffs.js +220 -0
- package/dist/core/handoffs.js.map +1 -0
- package/dist/core/handoffs.test.d.ts +8 -0
- package/dist/core/handoffs.test.d.ts.map +1 -0
- package/dist/core/handoffs.test.js +231 -0
- package/dist/core/handoffs.test.js.map +1 -0
- package/dist/core/orchestrator.d.ts +246 -0
- package/dist/core/orchestrator.d.ts.map +1 -0
- package/dist/core/orchestrator.js +514 -0
- package/dist/core/orchestrator.js.map +1 -0
- package/dist/core/orchestrator.test.d.ts +8 -0
- package/dist/core/orchestrator.test.d.ts.map +1 -0
- package/dist/core/orchestrator.test.js +517 -0
- package/dist/core/orchestrator.test.js.map +1 -0
- package/dist/core/router.d.ts +102 -0
- package/dist/core/router.d.ts.map +1 -0
- package/dist/core/router.js +178 -0
- package/dist/core/router.js.map +1 -0
- package/dist/core/router.test.d.ts +8 -0
- package/dist/core/router.test.d.ts.map +1 -0
- package/dist/core/router.test.js +215 -0
- package/dist/core/router.test.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/init.test.js +288 -0
- package/dist/providers/azure.d.ts +147 -0
- package/dist/providers/azure.d.ts.map +1 -0
- package/dist/providers/azure.js +491 -0
- package/dist/providers/azure.js.map +1 -0
- package/dist/providers/azure.test.d.ts +11 -0
- package/dist/providers/azure.test.d.ts.map +1 -0
- package/dist/providers/azure.test.js +330 -0
- package/dist/providers/azure.test.js.map +1 -0
- package/dist/providers/config.d.ts +87 -0
- package/dist/providers/config.d.ts.map +1 -0
- package/dist/providers/config.js +193 -0
- package/dist/providers/config.js.map +1 -0
- package/dist/providers/config.test.d.ts +7 -0
- package/dist/providers/config.test.d.ts.map +1 -0
- package/dist/providers/config.test.js +370 -0
- package/dist/providers/config.test.js.map +1 -0
- package/dist/providers/index.d.ts +18 -0
- package/dist/providers/index.d.ts.map +1 -0
- package/dist/providers/index.js +14 -0
- package/dist/providers/index.js.map +1 -0
- package/dist/providers/interface.d.ts +191 -0
- package/dist/providers/interface.d.ts.map +1 -0
- package/dist/providers/interface.js +94 -0
- package/dist/providers/interface.js.map +1 -0
- package/dist/providers/retry.d.ts +128 -0
- package/dist/providers/retry.d.ts.map +1 -0
- package/dist/providers/retry.js +205 -0
- package/dist/providers/retry.js.map +1 -0
- package/dist/providers/retry.test.d.ts +7 -0
- package/dist/providers/retry.test.d.ts.map +1 -0
- package/dist/providers/retry.test.js +439 -0
- package/dist/providers/retry.test.js.map +1 -0
- package/dist/providers/streaming.d.ts +157 -0
- package/dist/providers/streaming.d.ts.map +1 -0
- package/dist/providers/streaming.js +233 -0
- package/dist/providers/streaming.js.map +1 -0
- package/dist/providers/streaming.test.d.ts +7 -0
- package/dist/providers/streaming.test.d.ts.map +1 -0
- package/dist/providers/streaming.test.js +372 -0
- package/dist/providers/streaming.test.js.map +1 -0
- package/dist/providers/types.d.ts +209 -0
- package/dist/providers/types.d.ts.map +1 -0
- package/dist/providers/types.js +53 -0
- package/dist/providers/types.js.map +1 -0
- package/dist/providers/types.test.d.ts +7 -0
- package/dist/providers/types.test.d.ts.map +1 -0
- package/dist/providers/types.test.js +141 -0
- package/dist/providers/types.test.js.map +1 -0
- package/dist/tools/cli/beads.d.ts +27 -0
- package/dist/tools/cli/beads.d.ts.map +1 -0
- package/dist/tools/cli/beads.js +172 -0
- package/dist/tools/cli/beads.js.map +1 -0
- package/dist/tools/cli/beads.test.d.ts +8 -0
- package/dist/tools/cli/beads.test.d.ts.map +1 -0
- package/dist/tools/cli/beads.test.js +264 -0
- package/dist/tools/cli/beads.test.js.map +1 -0
- package/dist/tools/cli/editFile.d.ts +17 -0
- package/dist/tools/cli/editFile.d.ts.map +1 -0
- package/dist/tools/cli/editFile.js +125 -0
- package/dist/tools/cli/editFile.js.map +1 -0
- package/dist/tools/cli/editFile.test.d.ts +8 -0
- package/dist/tools/cli/editFile.test.d.ts.map +1 -0
- package/dist/tools/cli/editFile.test.js +177 -0
- package/dist/tools/cli/editFile.test.js.map +1 -0
- package/dist/tools/cli/readFile.d.ts +25 -0
- package/dist/tools/cli/readFile.d.ts.map +1 -0
- package/dist/tools/cli/readFile.js +118 -0
- package/dist/tools/cli/readFile.js.map +1 -0
- package/dist/tools/cli/readFile.test.d.ts +8 -0
- package/dist/tools/cli/readFile.test.d.ts.map +1 -0
- package/dist/tools/cli/readFile.test.js +194 -0
- package/dist/tools/cli/readFile.test.js.map +1 -0
- package/dist/tools/cli/search.d.ts +16 -0
- package/dist/tools/cli/search.d.ts.map +1 -0
- package/dist/tools/cli/search.js +261 -0
- package/dist/tools/cli/search.js.map +1 -0
- package/dist/tools/cli/search.test.d.ts +8 -0
- package/dist/tools/cli/search.test.d.ts.map +1 -0
- package/dist/tools/cli/search.test.js +172 -0
- package/dist/tools/cli/search.test.js.map +1 -0
- package/dist/tools/cli/subagent.d.ts +43 -0
- package/dist/tools/cli/subagent.d.ts.map +1 -0
- package/dist/tools/cli/subagent.js +99 -0
- package/dist/tools/cli/subagent.js.map +1 -0
- package/dist/tools/cli/subagent.test.d.ts +8 -0
- package/dist/tools/cli/subagent.test.d.ts.map +1 -0
- package/dist/tools/cli/subagent.test.js +190 -0
- package/dist/tools/cli/subagent.test.js.map +1 -0
- package/dist/tools/cli/terminal.d.ts +19 -0
- package/dist/tools/cli/terminal.d.ts.map +1 -0
- package/dist/tools/cli/terminal.js +164 -0
- package/dist/tools/cli/terminal.js.map +1 -0
- package/dist/tools/cli/terminal.test.d.ts +8 -0
- package/dist/tools/cli/terminal.test.d.ts.map +1 -0
- package/dist/tools/cli/terminal.test.js +161 -0
- package/dist/tools/cli/terminal.test.js.map +1 -0
- package/dist/tools/index.d.ts +25 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +41 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/interface.d.ts +64 -0
- package/dist/tools/interface.d.ts.map +1 -0
- package/dist/tools/interface.js +37 -0
- package/dist/tools/interface.js.map +1 -0
- package/dist/tools/interface.test.d.ts +7 -0
- package/dist/tools/interface.test.d.ts.map +1 -0
- package/dist/tools/interface.test.js +179 -0
- package/dist/tools/interface.test.js.map +1 -0
- package/dist/tools/mcp/bridge.d.ts +48 -0
- package/dist/tools/mcp/bridge.d.ts.map +1 -0
- package/dist/tools/mcp/bridge.js +128 -0
- package/dist/tools/mcp/bridge.js.map +1 -0
- package/dist/tools/mcp/bridge.test.d.ts +8 -0
- package/dist/tools/mcp/bridge.test.d.ts.map +1 -0
- package/dist/tools/mcp/bridge.test.js +300 -0
- package/dist/tools/mcp/bridge.test.js.map +1 -0
- package/dist/tools/mcp/client.d.ts +135 -0
- package/dist/tools/mcp/client.d.ts.map +1 -0
- package/dist/tools/mcp/client.js +263 -0
- package/dist/tools/mcp/client.js.map +1 -0
- package/dist/tools/mcp/client.test.d.ts +8 -0
- package/dist/tools/mcp/client.test.d.ts.map +1 -0
- package/dist/tools/mcp/client.test.js +390 -0
- package/dist/tools/mcp/client.test.js.map +1 -0
- package/dist/tools/registry.d.ts +82 -0
- package/dist/tools/registry.d.ts.map +1 -0
- package/dist/tools/registry.js +99 -0
- package/dist/tools/registry.js.map +1 -0
- package/dist/tools/registry.test.d.ts +7 -0
- package/dist/tools/registry.test.d.ts.map +1 -0
- package/dist/tools/registry.test.js +199 -0
- package/dist/tools/registry.test.js.map +1 -0
- package/dist/tools/suite.test.d.ts +11 -0
- package/dist/tools/suite.test.d.ts.map +1 -0
- package/dist/tools/suite.test.js +119 -0
- package/dist/tools/suite.test.js.map +1 -0
- package/dist/tools/types.d.ts +75 -0
- package/dist/tools/types.d.ts.map +1 -0
- package/dist/tools/types.js +30 -0
- package/dist/tools/types.js.map +1 -0
- package/dist/tools/types.test.d.ts +7 -0
- package/dist/tools/types.test.d.ts.map +1 -0
- package/dist/tools/types.test.js +178 -0
- package/dist/tools/types.test.js.map +1 -0
- package/package.json +60 -56
- package/sbom.json +3302 -8
- package/templates/.github/agents/beth.agent.md +329 -329
- package/templates/.github/agents/developer.agent.md +572 -572
- package/templates/.github/agents/product-manager.agent.md +272 -272
- package/templates/.github/agents/researcher.agent.md +338 -338
- package/templates/.github/agents/security-reviewer.agent.md +465 -465
- package/templates/.github/agents/tester.agent.md +496 -496
- package/templates/.github/agents/ux-designer.agent.md +393 -393
- package/templates/mcp.json.example +4 -0
package/sbom.json
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
"bomFormat": "CycloneDX",
|
|
4
4
|
"specVersion": "1.6",
|
|
5
5
|
"version": 1,
|
|
6
|
-
"serialNumber": "urn:uuid:
|
|
6
|
+
"serialNumber": "urn:uuid:8b42999b-524b-4c4b-99ab-581bd0d319c5",
|
|
7
7
|
"metadata": {
|
|
8
|
-
"timestamp": "2026-02-
|
|
8
|
+
"timestamp": "2026-02-20T02:14:58.908Z",
|
|
9
9
|
"tools": {
|
|
10
10
|
"components": [
|
|
11
11
|
{
|
|
12
12
|
"type": "application",
|
|
13
13
|
"name": "npm",
|
|
14
|
-
"version": "
|
|
14
|
+
"version": "11.9.0"
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
"type": "application",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"component": {
|
|
83
83
|
"type": "application",
|
|
84
84
|
"name": "beth-copilot",
|
|
85
|
-
"version": "1.0.
|
|
86
|
-
"bom-ref": "beth-copilot@1.0.
|
|
85
|
+
"version": "1.0.16",
|
|
86
|
+
"bom-ref": "beth-copilot@1.0.16",
|
|
87
87
|
"author": "Steph Schofield",
|
|
88
88
|
"description": "Beth - A ruthless, hyper-competent AI orchestrator for GitHub Copilot multi-agent workflows",
|
|
89
89
|
"licenses": [
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
],
|
|
97
|
-
"purl": "pkg:npm/beth-copilot@1.0.
|
|
97
|
+
"purl": "pkg:npm/beth-copilot@1.0.16?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fstephschofield%2Fbeth.git",
|
|
98
98
|
"externalReferences": [
|
|
99
99
|
{
|
|
100
100
|
"url": "git+https://github.com/stephschofield/beth.git",
|
|
@@ -120,10 +120,3304 @@
|
|
|
120
120
|
]
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
|
-
"components": [
|
|
123
|
+
"components": [
|
|
124
|
+
{
|
|
125
|
+
"type": "library",
|
|
126
|
+
"name": "identity",
|
|
127
|
+
"group": "@azure",
|
|
128
|
+
"version": "4.13.0",
|
|
129
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/identity@4.13.0",
|
|
130
|
+
"author": "Microsoft Corporation",
|
|
131
|
+
"description": "Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID",
|
|
132
|
+
"scope": "optional",
|
|
133
|
+
"licenses": [
|
|
134
|
+
{
|
|
135
|
+
"license": {
|
|
136
|
+
"id": "MIT",
|
|
137
|
+
"acknowledgement": "declared"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"purl": "pkg:npm/%40azure/identity@4.13.0",
|
|
142
|
+
"externalReferences": [
|
|
143
|
+
{
|
|
144
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
145
|
+
"type": "vcs",
|
|
146
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity/README.md",
|
|
150
|
+
"type": "website",
|
|
151
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
155
|
+
"type": "issue-tracker",
|
|
156
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"url": "https://registry.npmjs.org/@azure/identity/-/identity-4.13.0.tgz",
|
|
160
|
+
"type": "distribution",
|
|
161
|
+
"hashes": [
|
|
162
|
+
{
|
|
163
|
+
"alg": "SHA-512",
|
|
164
|
+
"content": "b960b47ecb1cfa1b354c619592482189a164912ecd913c5f9c21fe1dd83ec937a14e931c7a1a689383e050a29dc821fef6576ee858621d1bfce0db6a8f5bd573"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"properties": [
|
|
171
|
+
{
|
|
172
|
+
"name": "cdx:npm:package:path",
|
|
173
|
+
"value": "node_modules/@azure/identity"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"type": "library",
|
|
179
|
+
"name": "node",
|
|
180
|
+
"group": "@types",
|
|
181
|
+
"version": "20.19.33",
|
|
182
|
+
"bom-ref": "beth-copilot@1.0.16|@types/node@20.19.33",
|
|
183
|
+
"description": "TypeScript definitions for node",
|
|
184
|
+
"licenses": [
|
|
185
|
+
{
|
|
186
|
+
"license": {
|
|
187
|
+
"id": "MIT",
|
|
188
|
+
"acknowledgement": "declared"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"purl": "pkg:npm/%40types/node@20.19.33#types/node",
|
|
193
|
+
"externalReferences": [
|
|
194
|
+
{
|
|
195
|
+
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node",
|
|
196
|
+
"type": "vcs",
|
|
197
|
+
"comment": "as detected from PackageJson property \"repository.url\" and \"repository.directory\""
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
201
|
+
"type": "website",
|
|
202
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues",
|
|
206
|
+
"type": "issue-tracker",
|
|
207
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"url": "https://registry.npmjs.org/@types/node/-/node-20.19.33.tgz",
|
|
211
|
+
"type": "distribution",
|
|
212
|
+
"hashes": [
|
|
213
|
+
{
|
|
214
|
+
"alg": "SHA-512",
|
|
215
|
+
"content": "46cd5b54021d06ce606d320acdafed82932e1b593753f50c24b59e70833135d2450cccdc3392ce88b551621dcf8a558460321e503bfb6e98873cb3ec6f274673"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"properties": [
|
|
222
|
+
{
|
|
223
|
+
"name": "cdx:npm:package:development",
|
|
224
|
+
"value": "true"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "cdx:npm:package:path",
|
|
228
|
+
"value": "node_modules/@types/node"
|
|
229
|
+
}
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "library",
|
|
234
|
+
"name": "gray-matter",
|
|
235
|
+
"version": "4.0.3",
|
|
236
|
+
"bom-ref": "beth-copilot@1.0.16|gray-matter@4.0.3",
|
|
237
|
+
"author": "Jon Schlinkert",
|
|
238
|
+
"description": "Parse front-matter from a string or file. Fast, reliable and easy to use. Parses YAML front matter by default, but also has support for YAML, JSON, TOML or Coffee Front-Matter, with options to set custom delimiters. Used by metalsmith, assemble, verb and many other projects.",
|
|
239
|
+
"licenses": [
|
|
240
|
+
{
|
|
241
|
+
"license": {
|
|
242
|
+
"id": "MIT",
|
|
243
|
+
"acknowledgement": "declared"
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"purl": "pkg:npm/gray-matter@4.0.3",
|
|
248
|
+
"externalReferences": [
|
|
249
|
+
{
|
|
250
|
+
"url": "git+https://github.com/jonschlinkert/gray-matter.git",
|
|
251
|
+
"type": "vcs",
|
|
252
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"url": "https://github.com/jonschlinkert/gray-matter",
|
|
256
|
+
"type": "website",
|
|
257
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"url": "https://github.com/jonschlinkert/gray-matter/issues",
|
|
261
|
+
"type": "issue-tracker",
|
|
262
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"url": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
|
|
266
|
+
"type": "distribution",
|
|
267
|
+
"hashes": [
|
|
268
|
+
{
|
|
269
|
+
"alg": "SHA-512",
|
|
270
|
+
"content": "e6feb265de092b778c23716aa82a2eb3056ac2e81a03daf874d641d70c1c9ab0f4d90915e47d32ed70505bc43042a11a658d6933d6aa39148e46125174d2b8e1"
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"properties": [
|
|
277
|
+
{
|
|
278
|
+
"name": "cdx:npm:package:path",
|
|
279
|
+
"value": "node_modules/gray-matter"
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "library",
|
|
285
|
+
"name": "openai",
|
|
286
|
+
"version": "6.22.0",
|
|
287
|
+
"bom-ref": "beth-copilot@1.0.16|openai@6.22.0",
|
|
288
|
+
"author": "OpenAI",
|
|
289
|
+
"description": "The official TypeScript library for the OpenAI API",
|
|
290
|
+
"scope": "optional",
|
|
291
|
+
"licenses": [
|
|
292
|
+
{
|
|
293
|
+
"license": {
|
|
294
|
+
"id": "Apache-2.0",
|
|
295
|
+
"acknowledgement": "declared"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"purl": "pkg:npm/openai@6.22.0",
|
|
300
|
+
"externalReferences": [
|
|
301
|
+
{
|
|
302
|
+
"url": "git+https://github.com/openai/openai-node.git",
|
|
303
|
+
"type": "vcs",
|
|
304
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"url": "https://github.com/openai/openai-node#readme",
|
|
308
|
+
"type": "website",
|
|
309
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"url": "https://github.com/openai/openai-node/issues",
|
|
313
|
+
"type": "issue-tracker",
|
|
314
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"url": "https://registry.npmjs.org/openai/-/openai-6.22.0.tgz",
|
|
318
|
+
"type": "distribution",
|
|
319
|
+
"hashes": [
|
|
320
|
+
{
|
|
321
|
+
"alg": "SHA-512",
|
|
322
|
+
"content": "ed8bf2d7b177dc18bd46eb566ec698b7984910427f92b44f3abc1a9fe7fd6823ee31ab75595b1bd95352208e56d4492c293e9f17af531bfc63e17ce874adc967"
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"properties": [
|
|
329
|
+
{
|
|
330
|
+
"name": "cdx:npm:package:path",
|
|
331
|
+
"value": "node_modules/openai"
|
|
332
|
+
}
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"type": "library",
|
|
337
|
+
"name": "typescript",
|
|
338
|
+
"version": "5.9.3",
|
|
339
|
+
"bom-ref": "beth-copilot@1.0.16|typescript@5.9.3",
|
|
340
|
+
"author": "Microsoft Corp.",
|
|
341
|
+
"description": "TypeScript is a language for application scale JavaScript development",
|
|
342
|
+
"licenses": [
|
|
343
|
+
{
|
|
344
|
+
"license": {
|
|
345
|
+
"id": "Apache-2.0",
|
|
346
|
+
"acknowledgement": "declared"
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"purl": "pkg:npm/typescript@5.9.3",
|
|
351
|
+
"externalReferences": [
|
|
352
|
+
{
|
|
353
|
+
"url": "git+https://github.com/microsoft/TypeScript.git",
|
|
354
|
+
"type": "vcs",
|
|
355
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"url": "https://www.typescriptlang.org/",
|
|
359
|
+
"type": "website",
|
|
360
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"url": "https://github.com/microsoft/TypeScript/issues",
|
|
364
|
+
"type": "issue-tracker",
|
|
365
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"url": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
369
|
+
"type": "distribution",
|
|
370
|
+
"hashes": [
|
|
371
|
+
{
|
|
372
|
+
"alg": "SHA-512",
|
|
373
|
+
"content": "8e5d6f6733c38a72ebf5e52ddc9feded5e8580d130f508ef04f772b33f4a7d00c3e357d0ac2d98e2f290762694a454f86d795bd511e12e9a7cc2d9ba3394e04b"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
377
|
+
}
|
|
378
|
+
],
|
|
379
|
+
"properties": [
|
|
380
|
+
{
|
|
381
|
+
"name": "cdx:npm:package:development",
|
|
382
|
+
"value": "true"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "cdx:npm:package:path",
|
|
386
|
+
"value": "node_modules/typescript"
|
|
387
|
+
}
|
|
388
|
+
]
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"type": "library",
|
|
392
|
+
"name": "abort-controller",
|
|
393
|
+
"group": "@azure",
|
|
394
|
+
"version": "2.1.2",
|
|
395
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
396
|
+
"author": "Microsoft Corporation",
|
|
397
|
+
"description": "Microsoft Azure SDK for JavaScript - Aborter",
|
|
398
|
+
"scope": "optional",
|
|
399
|
+
"licenses": [
|
|
400
|
+
{
|
|
401
|
+
"license": {
|
|
402
|
+
"id": "MIT",
|
|
403
|
+
"acknowledgement": "declared"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
],
|
|
407
|
+
"purl": "pkg:npm/%40azure/abort-controller@2.1.2",
|
|
408
|
+
"externalReferences": [
|
|
409
|
+
{
|
|
410
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
411
|
+
"type": "vcs",
|
|
412
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/abort-controller/README.md",
|
|
416
|
+
"type": "website",
|
|
417
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
421
|
+
"type": "issue-tracker",
|
|
422
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"url": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
|
426
|
+
"type": "distribution",
|
|
427
|
+
"hashes": [
|
|
428
|
+
{
|
|
429
|
+
"alg": "SHA-512",
|
|
430
|
+
"content": "9c1acbb045a6e09daee4ba403e3c400d396adedac38156595c734a69b79766da6addddc06cdfca18ef3647ceeb743cf9fe5601d36e2bb447f5d3fab4bab360b0"
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
"properties": [
|
|
437
|
+
{
|
|
438
|
+
"name": "cdx:npm:package:path",
|
|
439
|
+
"value": "node_modules/@azure/abort-controller"
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"type": "library",
|
|
445
|
+
"name": "core-auth",
|
|
446
|
+
"group": "@azure",
|
|
447
|
+
"version": "1.10.1",
|
|
448
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/core-auth@1.10.1",
|
|
449
|
+
"author": "Microsoft Corporation",
|
|
450
|
+
"description": "Provides low-level interfaces and helper methods for authentication in Azure SDK",
|
|
451
|
+
"scope": "optional",
|
|
452
|
+
"licenses": [
|
|
453
|
+
{
|
|
454
|
+
"license": {
|
|
455
|
+
"id": "MIT",
|
|
456
|
+
"acknowledgement": "declared"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"purl": "pkg:npm/%40azure/core-auth@1.10.1",
|
|
461
|
+
"externalReferences": [
|
|
462
|
+
{
|
|
463
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
464
|
+
"type": "vcs",
|
|
465
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-auth/README.md",
|
|
469
|
+
"type": "website",
|
|
470
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
474
|
+
"type": "issue-tracker",
|
|
475
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"url": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.10.1.tgz",
|
|
479
|
+
"type": "distribution",
|
|
480
|
+
"hashes": [
|
|
481
|
+
{
|
|
482
|
+
"alg": "SHA-512",
|
|
483
|
+
"content": "ca444c5bc3e35409fe452eb0c397262bd5360b21fda7843cf18270bd4b257ee32637df30ff6add1912cfa8960e6daa4109dcc155e0e06167499c53c56fbab3a6"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"properties": [
|
|
490
|
+
{
|
|
491
|
+
"name": "cdx:npm:package:path",
|
|
492
|
+
"value": "node_modules/@azure/core-auth"
|
|
493
|
+
}
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"type": "library",
|
|
498
|
+
"name": "core-client",
|
|
499
|
+
"group": "@azure",
|
|
500
|
+
"version": "1.10.1",
|
|
501
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/core-client@1.10.1",
|
|
502
|
+
"author": "Microsoft Corporation",
|
|
503
|
+
"description": "Core library for interfacing with AutoRest generated code",
|
|
504
|
+
"scope": "optional",
|
|
505
|
+
"licenses": [
|
|
506
|
+
{
|
|
507
|
+
"license": {
|
|
508
|
+
"id": "MIT",
|
|
509
|
+
"acknowledgement": "declared"
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"purl": "pkg:npm/%40azure/core-client@1.10.1",
|
|
514
|
+
"externalReferences": [
|
|
515
|
+
{
|
|
516
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
517
|
+
"type": "vcs",
|
|
518
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client/",
|
|
522
|
+
"type": "website",
|
|
523
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
527
|
+
"type": "issue-tracker",
|
|
528
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"url": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.10.1.tgz",
|
|
532
|
+
"type": "distribution",
|
|
533
|
+
"hashes": [
|
|
534
|
+
{
|
|
535
|
+
"alg": "SHA-512",
|
|
536
|
+
"content": "361e4f84439e63a3eb9f134fb041d1afd7a29b12f080b9699a0b906872818a715803f454f7e90e615390a8ead3b022fe292c6b2cb975803f039390455bfee5ff"
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"properties": [
|
|
543
|
+
{
|
|
544
|
+
"name": "cdx:npm:package:path",
|
|
545
|
+
"value": "node_modules/@azure/core-client"
|
|
546
|
+
}
|
|
547
|
+
]
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"type": "library",
|
|
551
|
+
"name": "core-rest-pipeline",
|
|
552
|
+
"group": "@azure",
|
|
553
|
+
"version": "1.22.2",
|
|
554
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/core-rest-pipeline@1.22.2",
|
|
555
|
+
"author": "Microsoft Corporation",
|
|
556
|
+
"description": "Isomorphic client library for making HTTP requests in node.js and browser.",
|
|
557
|
+
"scope": "optional",
|
|
558
|
+
"licenses": [
|
|
559
|
+
{
|
|
560
|
+
"license": {
|
|
561
|
+
"id": "MIT",
|
|
562
|
+
"acknowledgement": "declared"
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"purl": "pkg:npm/%40azure/core-rest-pipeline@1.22.2",
|
|
567
|
+
"externalReferences": [
|
|
568
|
+
{
|
|
569
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
570
|
+
"type": "vcs",
|
|
571
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/",
|
|
575
|
+
"type": "website",
|
|
576
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
580
|
+
"type": "issue-tracker",
|
|
581
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"url": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.22.2.tgz",
|
|
585
|
+
"type": "distribution",
|
|
586
|
+
"hashes": [
|
|
587
|
+
{
|
|
588
|
+
"alg": "SHA-512",
|
|
589
|
+
"content": "3331f29bec0e8bc08b52528242ed7675ed27c1cabd93d2aebf8de3e166bef82b02a49c29b3679e050c03d81bbcb279314ed0ca0f1e06c23b91f44f320bc2cdae"
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
593
|
+
}
|
|
594
|
+
],
|
|
595
|
+
"properties": [
|
|
596
|
+
{
|
|
597
|
+
"name": "cdx:npm:package:path",
|
|
598
|
+
"value": "node_modules/@azure/core-rest-pipeline"
|
|
599
|
+
}
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"type": "library",
|
|
604
|
+
"name": "core-tracing",
|
|
605
|
+
"group": "@azure",
|
|
606
|
+
"version": "1.3.1",
|
|
607
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/core-tracing@1.3.1",
|
|
608
|
+
"author": "Microsoft Corporation",
|
|
609
|
+
"description": "Provides low-level interfaces and helper methods for tracing in Azure SDK",
|
|
610
|
+
"scope": "optional",
|
|
611
|
+
"licenses": [
|
|
612
|
+
{
|
|
613
|
+
"license": {
|
|
614
|
+
"id": "MIT",
|
|
615
|
+
"acknowledgement": "declared"
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
],
|
|
619
|
+
"purl": "pkg:npm/%40azure/core-tracing@1.3.1",
|
|
620
|
+
"externalReferences": [
|
|
621
|
+
{
|
|
622
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
623
|
+
"type": "vcs",
|
|
624
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/README.md",
|
|
628
|
+
"type": "website",
|
|
629
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
633
|
+
"type": "issue-tracker",
|
|
634
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"url": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz",
|
|
638
|
+
"type": "distribution",
|
|
639
|
+
"hashes": [
|
|
640
|
+
{
|
|
641
|
+
"alg": "SHA-512",
|
|
642
|
+
"content": "f4c58a7af47b1f3f24373ccf2df5f8100b463366fc9abe741cf0c1be2a3de9b5113fff42f878dd1f7b0194b48d36bbd102be7f93fb2fa07e39ee007920aa66c1"
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
646
|
+
}
|
|
647
|
+
],
|
|
648
|
+
"properties": [
|
|
649
|
+
{
|
|
650
|
+
"name": "cdx:npm:package:path",
|
|
651
|
+
"value": "node_modules/@azure/core-tracing"
|
|
652
|
+
}
|
|
653
|
+
]
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"type": "library",
|
|
657
|
+
"name": "core-util",
|
|
658
|
+
"group": "@azure",
|
|
659
|
+
"version": "1.13.1",
|
|
660
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
661
|
+
"author": "Microsoft Corporation",
|
|
662
|
+
"description": "Core library for shared utility methods",
|
|
663
|
+
"scope": "optional",
|
|
664
|
+
"licenses": [
|
|
665
|
+
{
|
|
666
|
+
"license": {
|
|
667
|
+
"id": "MIT",
|
|
668
|
+
"acknowledgement": "declared"
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
"purl": "pkg:npm/%40azure/core-util@1.13.1",
|
|
673
|
+
"externalReferences": [
|
|
674
|
+
{
|
|
675
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
676
|
+
"type": "vcs",
|
|
677
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-util/",
|
|
681
|
+
"type": "website",
|
|
682
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
686
|
+
"type": "issue-tracker",
|
|
687
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"url": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.13.1.tgz",
|
|
691
|
+
"type": "distribution",
|
|
692
|
+
"hashes": [
|
|
693
|
+
{
|
|
694
|
+
"alg": "SHA-512",
|
|
695
|
+
"content": "5cf02b28bcecbe5d077f409a1b228753256017ba039e12a83fce57bfa3384ad17fd4085f391859b9d1ed3b27f6b3e15c6ee43d74f4408c1f09d8abd144c50ad8"
|
|
696
|
+
}
|
|
697
|
+
],
|
|
698
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"properties": [
|
|
702
|
+
{
|
|
703
|
+
"name": "cdx:npm:package:path",
|
|
704
|
+
"value": "node_modules/@azure/core-util"
|
|
705
|
+
}
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"type": "library",
|
|
710
|
+
"name": "logger",
|
|
711
|
+
"group": "@azure",
|
|
712
|
+
"version": "1.3.0",
|
|
713
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/logger@1.3.0",
|
|
714
|
+
"author": "Microsoft Corporation",
|
|
715
|
+
"description": "Microsoft Azure SDK for JavaScript - Logger",
|
|
716
|
+
"scope": "optional",
|
|
717
|
+
"licenses": [
|
|
718
|
+
{
|
|
719
|
+
"license": {
|
|
720
|
+
"id": "MIT",
|
|
721
|
+
"acknowledgement": "declared"
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
],
|
|
725
|
+
"purl": "pkg:npm/%40azure/logger@1.3.0",
|
|
726
|
+
"externalReferences": [
|
|
727
|
+
{
|
|
728
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
729
|
+
"type": "vcs",
|
|
730
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger/README.md",
|
|
734
|
+
"type": "website",
|
|
735
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
739
|
+
"type": "issue-tracker",
|
|
740
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"url": "https://registry.npmjs.org/@azure/logger/-/logger-1.3.0.tgz",
|
|
744
|
+
"type": "distribution",
|
|
745
|
+
"hashes": [
|
|
746
|
+
{
|
|
747
|
+
"alg": "SHA-512",
|
|
748
|
+
"content": "7c2a8f21f39c2c4f821aa18f77ae9cf1b669c008e2f7cb59e0923d8bf9a54cd4e5b085ac9427e9838f2cff2a722f1653ba6a79b32a63aca9f6fe463babca006c"
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
752
|
+
}
|
|
753
|
+
],
|
|
754
|
+
"properties": [
|
|
755
|
+
{
|
|
756
|
+
"name": "cdx:npm:package:path",
|
|
757
|
+
"value": "node_modules/@azure/logger"
|
|
758
|
+
}
|
|
759
|
+
]
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"type": "library",
|
|
763
|
+
"name": "msal-browser",
|
|
764
|
+
"group": "@azure",
|
|
765
|
+
"version": "4.28.2",
|
|
766
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/msal-browser@4.28.2",
|
|
767
|
+
"author": "Microsoft",
|
|
768
|
+
"description": "Microsoft Authentication Library for js",
|
|
769
|
+
"scope": "optional",
|
|
770
|
+
"licenses": [
|
|
771
|
+
{
|
|
772
|
+
"license": {
|
|
773
|
+
"id": "MIT",
|
|
774
|
+
"acknowledgement": "declared"
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
],
|
|
778
|
+
"purl": "pkg:npm/%40azure/msal-browser@4.28.2",
|
|
779
|
+
"externalReferences": [
|
|
780
|
+
{
|
|
781
|
+
"url": "git+https://github.com/AzureAD/microsoft-authentication-library-for-js.git",
|
|
782
|
+
"type": "vcs",
|
|
783
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js#readme",
|
|
787
|
+
"type": "website",
|
|
788
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js/issues",
|
|
792
|
+
"type": "issue-tracker",
|
|
793
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"url": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.28.2.tgz",
|
|
797
|
+
"type": "distribution",
|
|
798
|
+
"hashes": [
|
|
799
|
+
{
|
|
800
|
+
"alg": "SHA-512",
|
|
801
|
+
"content": "eaf61432fb3a909c498316829879ff17c5718cb1cd87b8bdc337f03c67fc932049f06836caf057c75ef951ebfc2ddac3d45e42e28eea1dad820b822b8461355d"
|
|
802
|
+
}
|
|
803
|
+
],
|
|
804
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
805
|
+
}
|
|
806
|
+
],
|
|
807
|
+
"properties": [
|
|
808
|
+
{
|
|
809
|
+
"name": "cdx:npm:package:path",
|
|
810
|
+
"value": "node_modules/@azure/msal-browser"
|
|
811
|
+
}
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"type": "library",
|
|
816
|
+
"name": "msal-node",
|
|
817
|
+
"group": "@azure",
|
|
818
|
+
"version": "3.8.7",
|
|
819
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/msal-node@3.8.7",
|
|
820
|
+
"author": "Microsoft",
|
|
821
|
+
"description": "Microsoft Authentication Library for Node",
|
|
822
|
+
"scope": "optional",
|
|
823
|
+
"licenses": [
|
|
824
|
+
{
|
|
825
|
+
"license": {
|
|
826
|
+
"id": "MIT",
|
|
827
|
+
"acknowledgement": "declared"
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
],
|
|
831
|
+
"purl": "pkg:npm/%40azure/msal-node@3.8.7",
|
|
832
|
+
"externalReferences": [
|
|
833
|
+
{
|
|
834
|
+
"url": "git+https://github.com/AzureAD/microsoft-authentication-library-for-js.git",
|
|
835
|
+
"type": "vcs",
|
|
836
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js#readme",
|
|
840
|
+
"type": "website",
|
|
841
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js/issues",
|
|
845
|
+
"type": "issue-tracker",
|
|
846
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"url": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.8.7.tgz",
|
|
850
|
+
"type": "distribution",
|
|
851
|
+
"hashes": [
|
|
852
|
+
{
|
|
853
|
+
"alg": "SHA-512",
|
|
854
|
+
"content": "6be5e7ada7bebb02e7970ebc6e9952d57e24b89f45ffb2ba69fb8c172464348b248638037b3979161af1fb5a660250e60b455a680c63450329d4e99ca95c2422"
|
|
855
|
+
}
|
|
856
|
+
],
|
|
857
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"properties": [
|
|
861
|
+
{
|
|
862
|
+
"name": "cdx:npm:package:path",
|
|
863
|
+
"value": "node_modules/@azure/msal-node"
|
|
864
|
+
}
|
|
865
|
+
]
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"type": "library",
|
|
869
|
+
"name": "open",
|
|
870
|
+
"version": "10.2.0",
|
|
871
|
+
"bom-ref": "beth-copilot@1.0.16|open@10.2.0",
|
|
872
|
+
"author": "Sindre Sorhus",
|
|
873
|
+
"description": "Open stuff like URLs, files, executables. Cross-platform.",
|
|
874
|
+
"scope": "optional",
|
|
875
|
+
"licenses": [
|
|
876
|
+
{
|
|
877
|
+
"license": {
|
|
878
|
+
"id": "MIT",
|
|
879
|
+
"acknowledgement": "declared"
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
],
|
|
883
|
+
"purl": "pkg:npm/open@10.2.0",
|
|
884
|
+
"externalReferences": [
|
|
885
|
+
{
|
|
886
|
+
"url": "git+https://github.com/sindresorhus/open.git",
|
|
887
|
+
"type": "vcs",
|
|
888
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"url": "https://github.com/sindresorhus/open#readme",
|
|
892
|
+
"type": "website",
|
|
893
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"url": "https://github.com/sindresorhus/open/issues",
|
|
897
|
+
"type": "issue-tracker",
|
|
898
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"url": "https://registry.npmjs.org/open/-/open-10.2.0.tgz",
|
|
902
|
+
"type": "distribution",
|
|
903
|
+
"hashes": [
|
|
904
|
+
{
|
|
905
|
+
"alg": "SHA-512",
|
|
906
|
+
"content": "6200697491cfc90d94139c7e8654977277a3cc0bc3d1bdb65363ae00ffbc3a79494fe3e358fc6d8261aa28a73e4604cceb753d80dd18ceb61cef5476593fe14c"
|
|
907
|
+
}
|
|
908
|
+
],
|
|
909
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
910
|
+
}
|
|
911
|
+
],
|
|
912
|
+
"properties": [
|
|
913
|
+
{
|
|
914
|
+
"name": "cdx:npm:package:path",
|
|
915
|
+
"value": "node_modules/open"
|
|
916
|
+
}
|
|
917
|
+
]
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"type": "library",
|
|
921
|
+
"name": "tslib",
|
|
922
|
+
"version": "2.8.1",
|
|
923
|
+
"bom-ref": "beth-copilot@1.0.16|tslib@2.8.1",
|
|
924
|
+
"author": "Microsoft Corp.",
|
|
925
|
+
"description": "Runtime library for TypeScript helper functions",
|
|
926
|
+
"scope": "optional",
|
|
927
|
+
"licenses": [
|
|
928
|
+
{
|
|
929
|
+
"license": {
|
|
930
|
+
"id": "0BSD",
|
|
931
|
+
"acknowledgement": "declared"
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
],
|
|
935
|
+
"purl": "pkg:npm/tslib@2.8.1",
|
|
936
|
+
"externalReferences": [
|
|
937
|
+
{
|
|
938
|
+
"url": "git+https://github.com/Microsoft/tslib.git",
|
|
939
|
+
"type": "vcs",
|
|
940
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"url": "https://www.typescriptlang.org/",
|
|
944
|
+
"type": "website",
|
|
945
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"url": "https://github.com/Microsoft/TypeScript/issues",
|
|
949
|
+
"type": "issue-tracker",
|
|
950
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"url": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
954
|
+
"type": "distribution",
|
|
955
|
+
"hashes": [
|
|
956
|
+
{
|
|
957
|
+
"alg": "SHA-512",
|
|
958
|
+
"content": "a0916ef781d06fe29576e49440bef09e99aa9df98bb0e03f9c087a6fa107d30084a0ad3f98f79753a737c0a0d5f373243ae1cf447b525ca294f7d2016b34bfdb"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
962
|
+
}
|
|
963
|
+
],
|
|
964
|
+
"properties": [
|
|
965
|
+
{
|
|
966
|
+
"name": "cdx:npm:package:path",
|
|
967
|
+
"value": "node_modules/tslib"
|
|
968
|
+
}
|
|
969
|
+
]
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"type": "library",
|
|
973
|
+
"name": "undici-types",
|
|
974
|
+
"version": "6.21.0",
|
|
975
|
+
"bom-ref": "beth-copilot@1.0.16|undici-types@6.21.0",
|
|
976
|
+
"description": "A stand-alone types package for Undici",
|
|
977
|
+
"licenses": [
|
|
978
|
+
{
|
|
979
|
+
"license": {
|
|
980
|
+
"id": "MIT",
|
|
981
|
+
"acknowledgement": "declared"
|
|
982
|
+
}
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"purl": "pkg:npm/undici-types@6.21.0",
|
|
986
|
+
"externalReferences": [
|
|
987
|
+
{
|
|
988
|
+
"url": "git+https://github.com/nodejs/undici.git",
|
|
989
|
+
"type": "vcs",
|
|
990
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"url": "https://undici.nodejs.org",
|
|
994
|
+
"type": "website",
|
|
995
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"url": "https://github.com/nodejs/undici/issues",
|
|
999
|
+
"type": "issue-tracker",
|
|
1000
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"url": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
1004
|
+
"type": "distribution",
|
|
1005
|
+
"hashes": [
|
|
1006
|
+
{
|
|
1007
|
+
"alg": "SHA-512",
|
|
1008
|
+
"content": "8b00d9aa0d10006ae0f516afe47e27d0ceb87379a4479f5c27ac10a7eec2e2723482c984c5a79d6982cd3b8e1e4f802d041c236d38863cc96dd8c7744fd1fd25"
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1012
|
+
}
|
|
1013
|
+
],
|
|
1014
|
+
"properties": [
|
|
1015
|
+
{
|
|
1016
|
+
"name": "cdx:npm:package:development",
|
|
1017
|
+
"value": "true"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"name": "cdx:npm:package:path",
|
|
1021
|
+
"value": "node_modules/undici-types"
|
|
1022
|
+
}
|
|
1023
|
+
]
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"type": "library",
|
|
1027
|
+
"name": "js-yaml",
|
|
1028
|
+
"version": "3.14.2",
|
|
1029
|
+
"bom-ref": "beth-copilot@1.0.16|js-yaml@3.14.2",
|
|
1030
|
+
"author": "Vladimir Zapparov",
|
|
1031
|
+
"description": "YAML 1.2 parser and serializer",
|
|
1032
|
+
"licenses": [
|
|
1033
|
+
{
|
|
1034
|
+
"license": {
|
|
1035
|
+
"id": "MIT",
|
|
1036
|
+
"acknowledgement": "declared"
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
],
|
|
1040
|
+
"purl": "pkg:npm/js-yaml@3.14.2",
|
|
1041
|
+
"externalReferences": [
|
|
1042
|
+
{
|
|
1043
|
+
"url": "git+https://github.com/nodeca/js-yaml.git",
|
|
1044
|
+
"type": "vcs",
|
|
1045
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"url": "https://github.com/nodeca/js-yaml",
|
|
1049
|
+
"type": "website",
|
|
1050
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"url": "https://github.com/nodeca/js-yaml/issues",
|
|
1054
|
+
"type": "issue-tracker",
|
|
1055
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"url": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
|
|
1059
|
+
"type": "distribution",
|
|
1060
|
+
"hashes": [
|
|
1061
|
+
{
|
|
1062
|
+
"alg": "SHA-512",
|
|
1063
|
+
"content": "3cc4a692ac6bd74e976b5e7a736336eb967e153acf97ea3177fae0390cb6b628d078ae53c50e37a6c3b5642c2154e49d9e7f91ce4ce5473fde638060241615a6"
|
|
1064
|
+
}
|
|
1065
|
+
],
|
|
1066
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1067
|
+
}
|
|
1068
|
+
],
|
|
1069
|
+
"properties": [
|
|
1070
|
+
{
|
|
1071
|
+
"name": "cdx:npm:package:path",
|
|
1072
|
+
"value": "node_modules/js-yaml"
|
|
1073
|
+
}
|
|
1074
|
+
]
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"type": "library",
|
|
1078
|
+
"name": "kind-of",
|
|
1079
|
+
"version": "6.0.3",
|
|
1080
|
+
"bom-ref": "beth-copilot@1.0.16|kind-of@6.0.3",
|
|
1081
|
+
"author": "Jon Schlinkert",
|
|
1082
|
+
"description": "Get the native type of a value.",
|
|
1083
|
+
"licenses": [
|
|
1084
|
+
{
|
|
1085
|
+
"license": {
|
|
1086
|
+
"id": "MIT",
|
|
1087
|
+
"acknowledgement": "declared"
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"purl": "pkg:npm/kind-of@6.0.3",
|
|
1092
|
+
"externalReferences": [
|
|
1093
|
+
{
|
|
1094
|
+
"url": "git+https://github.com/jonschlinkert/kind-of.git",
|
|
1095
|
+
"type": "vcs",
|
|
1096
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"url": "https://github.com/jonschlinkert/kind-of",
|
|
1100
|
+
"type": "website",
|
|
1101
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"url": "https://github.com/jonschlinkert/kind-of/issues",
|
|
1105
|
+
"type": "issue-tracker",
|
|
1106
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"url": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
|
1110
|
+
"type": "distribution",
|
|
1111
|
+
"hashes": [
|
|
1112
|
+
{
|
|
1113
|
+
"alg": "SHA-512",
|
|
1114
|
+
"content": "75c4b5ba5fbdb66783f794fec76f3f7a12e077d98435adcbb2f0d3b739b7bf20443bb44fa6dbc00feb78e165576948d305172ba45785942f160abb94478e7a87"
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1118
|
+
}
|
|
1119
|
+
],
|
|
1120
|
+
"properties": [
|
|
1121
|
+
{
|
|
1122
|
+
"name": "cdx:npm:package:path",
|
|
1123
|
+
"value": "node_modules/kind-of"
|
|
1124
|
+
}
|
|
1125
|
+
]
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"type": "library",
|
|
1129
|
+
"name": "section-matter",
|
|
1130
|
+
"version": "1.0.0",
|
|
1131
|
+
"bom-ref": "beth-copilot@1.0.16|section-matter@1.0.0",
|
|
1132
|
+
"author": "Jon Schlinkert",
|
|
1133
|
+
"description": "Like front-matter, but supports multiple sections in a document.",
|
|
1134
|
+
"licenses": [
|
|
1135
|
+
{
|
|
1136
|
+
"license": {
|
|
1137
|
+
"id": "MIT",
|
|
1138
|
+
"acknowledgement": "declared"
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
],
|
|
1142
|
+
"purl": "pkg:npm/section-matter@1.0.0",
|
|
1143
|
+
"externalReferences": [
|
|
1144
|
+
{
|
|
1145
|
+
"url": "git+https://github.com/jonschlinkert/section-matter.git",
|
|
1146
|
+
"type": "vcs",
|
|
1147
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"url": "https://github.com/jonschlinkert/section-matter",
|
|
1151
|
+
"type": "website",
|
|
1152
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"url": "https://github.com/jonschlinkert/section-matter/issues",
|
|
1156
|
+
"type": "issue-tracker",
|
|
1157
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"url": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
|
|
1161
|
+
"type": "distribution",
|
|
1162
|
+
"hashes": [
|
|
1163
|
+
{
|
|
1164
|
+
"alg": "SHA-512",
|
|
1165
|
+
"content": "bdf0f7a664f31a9b9f8d2701879d181cacc4bb6971056855107b0d1a81179829a7da12867de34b60ccc22697bc703ee0a97ed3265b8e56906401eaaee9d80c98"
|
|
1166
|
+
}
|
|
1167
|
+
],
|
|
1168
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"properties": [
|
|
1172
|
+
{
|
|
1173
|
+
"name": "cdx:npm:package:path",
|
|
1174
|
+
"value": "node_modules/section-matter"
|
|
1175
|
+
}
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"type": "library",
|
|
1180
|
+
"name": "strip-bom-string",
|
|
1181
|
+
"version": "1.0.0",
|
|
1182
|
+
"bom-ref": "beth-copilot@1.0.16|strip-bom-string@1.0.0",
|
|
1183
|
+
"author": "Jon Schlinkert",
|
|
1184
|
+
"description": "Strip a byte order mark (BOM) from a string.",
|
|
1185
|
+
"licenses": [
|
|
1186
|
+
{
|
|
1187
|
+
"license": {
|
|
1188
|
+
"id": "MIT",
|
|
1189
|
+
"acknowledgement": "declared"
|
|
1190
|
+
}
|
|
1191
|
+
}
|
|
1192
|
+
],
|
|
1193
|
+
"purl": "pkg:npm/strip-bom-string@1.0.0",
|
|
1194
|
+
"externalReferences": [
|
|
1195
|
+
{
|
|
1196
|
+
"url": "git+https://github.com/jonschlinkert/strip-bom-string.git",
|
|
1197
|
+
"type": "vcs",
|
|
1198
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"url": "https://github.com/jonschlinkert/strip-bom-string",
|
|
1202
|
+
"type": "website",
|
|
1203
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"url": "https://github.com/jonschlinkert/strip-bom-string/issues",
|
|
1207
|
+
"type": "issue-tracker",
|
|
1208
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"url": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
|
|
1212
|
+
"type": "distribution",
|
|
1213
|
+
"hashes": [
|
|
1214
|
+
{
|
|
1215
|
+
"alg": "SHA-512",
|
|
1216
|
+
"content": "b820b6547bd0458bbe94c878332fec14d985da4945ca62d7d701c97979db109111a55fd9b15ba89f37ab8dfac6a48185ecb0556b53bb8bd923896bc9885724f2"
|
|
1217
|
+
}
|
|
1218
|
+
],
|
|
1219
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"properties": [
|
|
1223
|
+
{
|
|
1224
|
+
"name": "cdx:npm:package:path",
|
|
1225
|
+
"value": "node_modules/strip-bom-string"
|
|
1226
|
+
}
|
|
1227
|
+
]
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"type": "library",
|
|
1231
|
+
"name": "ts-http-runtime",
|
|
1232
|
+
"group": "@typespec",
|
|
1233
|
+
"version": "0.3.3",
|
|
1234
|
+
"bom-ref": "beth-copilot@1.0.16|@typespec/ts-http-runtime@0.3.3",
|
|
1235
|
+
"author": "Microsoft Corporation",
|
|
1236
|
+
"description": "Isomorphic client library for making HTTP requests in node.js and browser.",
|
|
1237
|
+
"scope": "optional",
|
|
1238
|
+
"licenses": [
|
|
1239
|
+
{
|
|
1240
|
+
"license": {
|
|
1241
|
+
"id": "MIT",
|
|
1242
|
+
"acknowledgement": "declared"
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
],
|
|
1246
|
+
"purl": "pkg:npm/%40typespec/ts-http-runtime@0.3.3",
|
|
1247
|
+
"externalReferences": [
|
|
1248
|
+
{
|
|
1249
|
+
"url": "git+https://github.com/Azure/azure-sdk-for-js.git",
|
|
1250
|
+
"type": "vcs",
|
|
1251
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/ts-http-runtime/",
|
|
1255
|
+
"type": "website",
|
|
1256
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"url": "https://github.com/Azure/azure-sdk-for-js/issues",
|
|
1260
|
+
"type": "issue-tracker",
|
|
1261
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"url": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.3.3.tgz",
|
|
1265
|
+
"type": "distribution",
|
|
1266
|
+
"hashes": [
|
|
1267
|
+
{
|
|
1268
|
+
"alg": "SHA-512",
|
|
1269
|
+
"content": "f757e9e8200025246d1f98daf794f514748a6bc68f5bdfd9c3a72d6bcd639594d4c3ff95abc8ccfc07c5ff5e21d9bef5c3047ce095135bfdd8f103e10c06b014"
|
|
1270
|
+
}
|
|
1271
|
+
],
|
|
1272
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1273
|
+
}
|
|
1274
|
+
],
|
|
1275
|
+
"properties": [
|
|
1276
|
+
{
|
|
1277
|
+
"name": "cdx:npm:package:path",
|
|
1278
|
+
"value": "node_modules/@typespec/ts-http-runtime"
|
|
1279
|
+
}
|
|
1280
|
+
]
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"type": "library",
|
|
1284
|
+
"name": "msal-common",
|
|
1285
|
+
"group": "@azure",
|
|
1286
|
+
"version": "15.14.2",
|
|
1287
|
+
"bom-ref": "beth-copilot@1.0.16|@azure/msal-common@15.14.2",
|
|
1288
|
+
"author": "Microsoft",
|
|
1289
|
+
"description": "Microsoft Authentication Library for js",
|
|
1290
|
+
"scope": "optional",
|
|
1291
|
+
"licenses": [
|
|
1292
|
+
{
|
|
1293
|
+
"license": {
|
|
1294
|
+
"id": "MIT",
|
|
1295
|
+
"acknowledgement": "declared"
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"purl": "pkg:npm/%40azure/msal-common@15.14.2",
|
|
1300
|
+
"externalReferences": [
|
|
1301
|
+
{
|
|
1302
|
+
"url": "git+https://github.com/AzureAD/microsoft-authentication-library-for-js.git",
|
|
1303
|
+
"type": "vcs",
|
|
1304
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js#readme",
|
|
1308
|
+
"type": "website",
|
|
1309
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js/issues",
|
|
1313
|
+
"type": "issue-tracker",
|
|
1314
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"url": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.14.2.tgz",
|
|
1318
|
+
"type": "distribution",
|
|
1319
|
+
"hashes": [
|
|
1320
|
+
{
|
|
1321
|
+
"alg": "SHA-512",
|
|
1322
|
+
"content": "9fc441244526779428b68a9b65f77e786064cee148d4a5fa8f0d9bdd67294b21a3c26ce8788fc96fdf68a4804f1e96fccb7d76341f81ebe1468b6655491f327c"
|
|
1323
|
+
}
|
|
1324
|
+
],
|
|
1325
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1326
|
+
}
|
|
1327
|
+
],
|
|
1328
|
+
"properties": [
|
|
1329
|
+
{
|
|
1330
|
+
"name": "cdx:npm:package:path",
|
|
1331
|
+
"value": "node_modules/@azure/msal-common"
|
|
1332
|
+
}
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"type": "library",
|
|
1337
|
+
"name": "jsonwebtoken",
|
|
1338
|
+
"version": "9.0.3",
|
|
1339
|
+
"bom-ref": "beth-copilot@1.0.16|jsonwebtoken@9.0.3",
|
|
1340
|
+
"author": "auth0",
|
|
1341
|
+
"description": "JSON Web Token implementation (symmetric and asymmetric)",
|
|
1342
|
+
"scope": "optional",
|
|
1343
|
+
"licenses": [
|
|
1344
|
+
{
|
|
1345
|
+
"license": {
|
|
1346
|
+
"id": "MIT",
|
|
1347
|
+
"acknowledgement": "declared"
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
],
|
|
1351
|
+
"purl": "pkg:npm/jsonwebtoken@9.0.3",
|
|
1352
|
+
"externalReferences": [
|
|
1353
|
+
{
|
|
1354
|
+
"url": "git+https://github.com/auth0/node-jsonwebtoken.git",
|
|
1355
|
+
"type": "vcs",
|
|
1356
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"url": "https://github.com/auth0/node-jsonwebtoken#readme",
|
|
1360
|
+
"type": "website",
|
|
1361
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"url": "https://github.com/auth0/node-jsonwebtoken/issues",
|
|
1365
|
+
"type": "issue-tracker",
|
|
1366
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"url": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
|
|
1370
|
+
"type": "distribution",
|
|
1371
|
+
"hashes": [
|
|
1372
|
+
{
|
|
1373
|
+
"alg": "SHA-512",
|
|
1374
|
+
"content": "313ff13f40abb9b15134b34abf12760587f2e776649befb96d7f5db6e3dba80790a5355ed0c4131616a8f3e0a9fff126269db8e31b7a0ebc3f1951060948f8d2"
|
|
1375
|
+
}
|
|
1376
|
+
],
|
|
1377
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1378
|
+
}
|
|
1379
|
+
],
|
|
1380
|
+
"properties": [
|
|
1381
|
+
{
|
|
1382
|
+
"name": "cdx:npm:package:path",
|
|
1383
|
+
"value": "node_modules/jsonwebtoken"
|
|
1384
|
+
}
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"type": "library",
|
|
1389
|
+
"name": "uuid",
|
|
1390
|
+
"version": "8.3.2",
|
|
1391
|
+
"bom-ref": "beth-copilot@1.0.16|uuid@8.3.2",
|
|
1392
|
+
"description": "RFC4122 (v1, v4, and v5) UUIDs",
|
|
1393
|
+
"scope": "optional",
|
|
1394
|
+
"licenses": [
|
|
1395
|
+
{
|
|
1396
|
+
"license": {
|
|
1397
|
+
"id": "MIT",
|
|
1398
|
+
"acknowledgement": "declared"
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
],
|
|
1402
|
+
"purl": "pkg:npm/uuid@8.3.2",
|
|
1403
|
+
"externalReferences": [
|
|
1404
|
+
{
|
|
1405
|
+
"url": "git+https://github.com/uuidjs/uuid.git",
|
|
1406
|
+
"type": "vcs",
|
|
1407
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"url": "https://github.com/uuidjs/uuid#readme",
|
|
1411
|
+
"type": "website",
|
|
1412
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"url": "https://github.com/uuidjs/uuid/issues",
|
|
1416
|
+
"type": "issue-tracker",
|
|
1417
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"url": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
|
1421
|
+
"type": "distribution",
|
|
1422
|
+
"hashes": [
|
|
1423
|
+
{
|
|
1424
|
+
"alg": "SHA-512",
|
|
1425
|
+
"content": "f8d62cd9078c5b2f865853849bdc679fa1c20e9d25ed0043ee697cccb52627ef77439345d0da1c12b9f09139175453625f7fdfa42e9a7d2f0385bfe0cfb47b7a"
|
|
1426
|
+
}
|
|
1427
|
+
],
|
|
1428
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1429
|
+
}
|
|
1430
|
+
],
|
|
1431
|
+
"properties": [
|
|
1432
|
+
{
|
|
1433
|
+
"name": "cdx:npm:package:path",
|
|
1434
|
+
"value": "node_modules/uuid"
|
|
1435
|
+
}
|
|
1436
|
+
]
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"type": "library",
|
|
1440
|
+
"name": "default-browser",
|
|
1441
|
+
"version": "5.5.0",
|
|
1442
|
+
"bom-ref": "beth-copilot@1.0.16|default-browser@5.5.0",
|
|
1443
|
+
"author": "Sindre Sorhus",
|
|
1444
|
+
"description": "Get the default browser",
|
|
1445
|
+
"scope": "optional",
|
|
1446
|
+
"licenses": [
|
|
1447
|
+
{
|
|
1448
|
+
"license": {
|
|
1449
|
+
"id": "MIT",
|
|
1450
|
+
"acknowledgement": "declared"
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
],
|
|
1454
|
+
"purl": "pkg:npm/default-browser@5.5.0",
|
|
1455
|
+
"externalReferences": [
|
|
1456
|
+
{
|
|
1457
|
+
"url": "git+https://github.com/sindresorhus/default-browser.git",
|
|
1458
|
+
"type": "vcs",
|
|
1459
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"url": "https://github.com/sindresorhus/default-browser#readme",
|
|
1463
|
+
"type": "website",
|
|
1464
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"url": "https://github.com/sindresorhus/default-browser/issues",
|
|
1468
|
+
"type": "issue-tracker",
|
|
1469
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"url": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz",
|
|
1473
|
+
"type": "distribution",
|
|
1474
|
+
"hashes": [
|
|
1475
|
+
{
|
|
1476
|
+
"alg": "SHA-512",
|
|
1477
|
+
"content": "1fd2cc2ebe73c086d2c6b9af8a41ae23fe4a1a167c136cc7decb643203392e93960eeb463362596a3e3ad147677f56bef78eb373b60182ba845b06e4ef31ef1b"
|
|
1478
|
+
}
|
|
1479
|
+
],
|
|
1480
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1481
|
+
}
|
|
1482
|
+
],
|
|
1483
|
+
"properties": [
|
|
1484
|
+
{
|
|
1485
|
+
"name": "cdx:npm:package:path",
|
|
1486
|
+
"value": "node_modules/default-browser"
|
|
1487
|
+
}
|
|
1488
|
+
]
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"type": "library",
|
|
1492
|
+
"name": "define-lazy-prop",
|
|
1493
|
+
"version": "3.0.0",
|
|
1494
|
+
"bom-ref": "beth-copilot@1.0.16|define-lazy-prop@3.0.0",
|
|
1495
|
+
"author": "Sindre Sorhus",
|
|
1496
|
+
"description": "Define a lazily evaluated property on an object",
|
|
1497
|
+
"scope": "optional",
|
|
1498
|
+
"licenses": [
|
|
1499
|
+
{
|
|
1500
|
+
"license": {
|
|
1501
|
+
"id": "MIT",
|
|
1502
|
+
"acknowledgement": "declared"
|
|
1503
|
+
}
|
|
1504
|
+
}
|
|
1505
|
+
],
|
|
1506
|
+
"purl": "pkg:npm/define-lazy-prop@3.0.0",
|
|
1507
|
+
"externalReferences": [
|
|
1508
|
+
{
|
|
1509
|
+
"url": "git+https://github.com/sindresorhus/define-lazy-prop.git",
|
|
1510
|
+
"type": "vcs",
|
|
1511
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"url": "https://github.com/sindresorhus/define-lazy-prop#readme",
|
|
1515
|
+
"type": "website",
|
|
1516
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"url": "https://github.com/sindresorhus/define-lazy-prop/issues",
|
|
1520
|
+
"type": "issue-tracker",
|
|
1521
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"url": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
|
|
1525
|
+
"type": "distribution",
|
|
1526
|
+
"hashes": [
|
|
1527
|
+
{
|
|
1528
|
+
"alg": "SHA-512",
|
|
1529
|
+
"content": "37e31e5d8a2aaf7a4e827f317f244f44437b8076a42d88e1b07856193ddf58088be08900b74883c35e108a2126d9b137d1ce575f9ab416d000dc22b97fdfc152"
|
|
1530
|
+
}
|
|
1531
|
+
],
|
|
1532
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1533
|
+
}
|
|
1534
|
+
],
|
|
1535
|
+
"properties": [
|
|
1536
|
+
{
|
|
1537
|
+
"name": "cdx:npm:package:path",
|
|
1538
|
+
"value": "node_modules/define-lazy-prop"
|
|
1539
|
+
}
|
|
1540
|
+
]
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"type": "library",
|
|
1544
|
+
"name": "is-inside-container",
|
|
1545
|
+
"version": "1.0.0",
|
|
1546
|
+
"bom-ref": "beth-copilot@1.0.16|is-inside-container@1.0.0",
|
|
1547
|
+
"author": "Sindre Sorhus",
|
|
1548
|
+
"description": "Check if the process is running inside a container (Docker/Podman)",
|
|
1549
|
+
"scope": "optional",
|
|
1550
|
+
"licenses": [
|
|
1551
|
+
{
|
|
1552
|
+
"license": {
|
|
1553
|
+
"id": "MIT",
|
|
1554
|
+
"acknowledgement": "declared"
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
],
|
|
1558
|
+
"purl": "pkg:npm/is-inside-container@1.0.0",
|
|
1559
|
+
"externalReferences": [
|
|
1560
|
+
{
|
|
1561
|
+
"url": "git+https://github.com/sindresorhus/is-inside-container.git",
|
|
1562
|
+
"type": "vcs",
|
|
1563
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"url": "https://github.com/sindresorhus/is-inside-container#readme",
|
|
1567
|
+
"type": "website",
|
|
1568
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"url": "https://github.com/sindresorhus/is-inside-container/issues",
|
|
1572
|
+
"type": "issue-tracker",
|
|
1573
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"url": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
|
|
1577
|
+
"type": "distribution",
|
|
1578
|
+
"hashes": [
|
|
1579
|
+
{
|
|
1580
|
+
"alg": "SHA-512",
|
|
1581
|
+
"content": "28860b08226085f1d9c6a8d8044eeb132d0e06e4dde710874bbb47560bc22e4c7b4ad2286b1c0d5b784200b80452315f79193e306fd0c66a7fbed113105ded44"
|
|
1582
|
+
}
|
|
1583
|
+
],
|
|
1584
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1585
|
+
}
|
|
1586
|
+
],
|
|
1587
|
+
"properties": [
|
|
1588
|
+
{
|
|
1589
|
+
"name": "cdx:npm:package:path",
|
|
1590
|
+
"value": "node_modules/is-inside-container"
|
|
1591
|
+
}
|
|
1592
|
+
]
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"type": "library",
|
|
1596
|
+
"name": "wsl-utils",
|
|
1597
|
+
"version": "0.1.0",
|
|
1598
|
+
"bom-ref": "beth-copilot@1.0.16|wsl-utils@0.1.0",
|
|
1599
|
+
"author": "Sindre Sorhus",
|
|
1600
|
+
"description": "Utilities for working with Windows Subsystem for Linux (WSL)",
|
|
1601
|
+
"scope": "optional",
|
|
1602
|
+
"licenses": [
|
|
1603
|
+
{
|
|
1604
|
+
"license": {
|
|
1605
|
+
"id": "MIT",
|
|
1606
|
+
"acknowledgement": "declared"
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
],
|
|
1610
|
+
"purl": "pkg:npm/wsl-utils@0.1.0",
|
|
1611
|
+
"externalReferences": [
|
|
1612
|
+
{
|
|
1613
|
+
"url": "git+https://github.com/sindresorhus/wsl-utils.git",
|
|
1614
|
+
"type": "vcs",
|
|
1615
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"url": "https://github.com/sindresorhus/wsl-utils#readme",
|
|
1619
|
+
"type": "website",
|
|
1620
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"url": "https://github.com/sindresorhus/wsl-utils/issues",
|
|
1624
|
+
"type": "issue-tracker",
|
|
1625
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"url": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz",
|
|
1629
|
+
"type": "distribution",
|
|
1630
|
+
"hashes": [
|
|
1631
|
+
{
|
|
1632
|
+
"alg": "SHA-512",
|
|
1633
|
+
"content": "87715b8ac6b69ca18fc42a66f3d1e4df79412ec9da181bdcb50a2968148e5bfb88b3a1537b5013c809ca149af356cf6fa4676c4deef7585dd5e2522c93819a73"
|
|
1634
|
+
}
|
|
1635
|
+
],
|
|
1636
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1637
|
+
}
|
|
1638
|
+
],
|
|
1639
|
+
"properties": [
|
|
1640
|
+
{
|
|
1641
|
+
"name": "cdx:npm:package:path",
|
|
1642
|
+
"value": "node_modules/wsl-utils"
|
|
1643
|
+
}
|
|
1644
|
+
]
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"type": "library",
|
|
1648
|
+
"name": "argparse",
|
|
1649
|
+
"version": "1.0.10",
|
|
1650
|
+
"bom-ref": "beth-copilot@1.0.16|argparse@1.0.10",
|
|
1651
|
+
"description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library",
|
|
1652
|
+
"licenses": [
|
|
1653
|
+
{
|
|
1654
|
+
"license": {
|
|
1655
|
+
"id": "MIT",
|
|
1656
|
+
"acknowledgement": "declared"
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
],
|
|
1660
|
+
"purl": "pkg:npm/argparse@1.0.10",
|
|
1661
|
+
"externalReferences": [
|
|
1662
|
+
{
|
|
1663
|
+
"url": "git+https://github.com/nodeca/argparse.git",
|
|
1664
|
+
"type": "vcs",
|
|
1665
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"url": "https://github.com/nodeca/argparse#readme",
|
|
1669
|
+
"type": "website",
|
|
1670
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"url": "https://github.com/nodeca/argparse/issues",
|
|
1674
|
+
"type": "issue-tracker",
|
|
1675
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"url": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
1679
|
+
"type": "distribution",
|
|
1680
|
+
"hashes": [
|
|
1681
|
+
{
|
|
1682
|
+
"alg": "SHA-512",
|
|
1683
|
+
"content": "a39468cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e"
|
|
1684
|
+
}
|
|
1685
|
+
],
|
|
1686
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"properties": [
|
|
1690
|
+
{
|
|
1691
|
+
"name": "cdx:npm:package:path",
|
|
1692
|
+
"value": "node_modules/argparse"
|
|
1693
|
+
}
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"type": "library",
|
|
1698
|
+
"name": "esprima",
|
|
1699
|
+
"version": "4.0.1",
|
|
1700
|
+
"bom-ref": "beth-copilot@1.0.16|esprima@4.0.1",
|
|
1701
|
+
"author": "Ariya Hidayat",
|
|
1702
|
+
"description": "ECMAScript parsing infrastructure for multipurpose analysis",
|
|
1703
|
+
"licenses": [
|
|
1704
|
+
{
|
|
1705
|
+
"license": {
|
|
1706
|
+
"id": "BSD-2-Clause",
|
|
1707
|
+
"acknowledgement": "declared"
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
],
|
|
1711
|
+
"purl": "pkg:npm/esprima@4.0.1",
|
|
1712
|
+
"externalReferences": [
|
|
1713
|
+
{
|
|
1714
|
+
"url": "git+https://github.com/jquery/esprima.git",
|
|
1715
|
+
"type": "vcs",
|
|
1716
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"url": "http://esprima.org",
|
|
1720
|
+
"type": "website",
|
|
1721
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"url": "https://github.com/jquery/esprima/issues",
|
|
1725
|
+
"type": "issue-tracker",
|
|
1726
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"url": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
1730
|
+
"type": "distribution",
|
|
1731
|
+
"hashes": [
|
|
1732
|
+
{
|
|
1733
|
+
"alg": "SHA-512",
|
|
1734
|
+
"content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0"
|
|
1735
|
+
}
|
|
1736
|
+
],
|
|
1737
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1738
|
+
}
|
|
1739
|
+
],
|
|
1740
|
+
"properties": [
|
|
1741
|
+
{
|
|
1742
|
+
"name": "cdx:npm:package:path",
|
|
1743
|
+
"value": "node_modules/esprima"
|
|
1744
|
+
}
|
|
1745
|
+
]
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"type": "library",
|
|
1749
|
+
"name": "extend-shallow",
|
|
1750
|
+
"version": "2.0.1",
|
|
1751
|
+
"bom-ref": "beth-copilot@1.0.16|extend-shallow@2.0.1",
|
|
1752
|
+
"author": "Jon Schlinkert",
|
|
1753
|
+
"description": "Extend an object with the properties of additional objects. node.js/javascript util.",
|
|
1754
|
+
"licenses": [
|
|
1755
|
+
{
|
|
1756
|
+
"license": {
|
|
1757
|
+
"id": "MIT",
|
|
1758
|
+
"acknowledgement": "declared"
|
|
1759
|
+
}
|
|
1760
|
+
}
|
|
1761
|
+
],
|
|
1762
|
+
"purl": "pkg:npm/extend-shallow@2.0.1",
|
|
1763
|
+
"externalReferences": [
|
|
1764
|
+
{
|
|
1765
|
+
"url": "git+https://github.com/jonschlinkert/extend-shallow.git",
|
|
1766
|
+
"type": "vcs",
|
|
1767
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"url": "https://github.com/jonschlinkert/extend-shallow",
|
|
1771
|
+
"type": "website",
|
|
1772
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"url": "https://github.com/jonschlinkert/extend-shallow/issues",
|
|
1776
|
+
"type": "issue-tracker",
|
|
1777
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"url": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
|
|
1781
|
+
"type": "distribution",
|
|
1782
|
+
"hashes": [
|
|
1783
|
+
{
|
|
1784
|
+
"alg": "SHA-512",
|
|
1785
|
+
"content": "cc29d3b65c4da0088373782a636698016171ed759689ab2e1762bc31ee566cdf28b4729350a0708cfb4da51b3fadb5199bb2b158068d8fb3f56bfa79d866d5ba"
|
|
1786
|
+
}
|
|
1787
|
+
],
|
|
1788
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1789
|
+
}
|
|
1790
|
+
],
|
|
1791
|
+
"properties": [
|
|
1792
|
+
{
|
|
1793
|
+
"name": "cdx:npm:package:path",
|
|
1794
|
+
"value": "node_modules/extend-shallow"
|
|
1795
|
+
}
|
|
1796
|
+
]
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"type": "library",
|
|
1800
|
+
"name": "http-proxy-agent",
|
|
1801
|
+
"version": "7.0.2",
|
|
1802
|
+
"bom-ref": "beth-copilot@1.0.16|http-proxy-agent@7.0.2",
|
|
1803
|
+
"author": "Nathan Rajlich",
|
|
1804
|
+
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
|
|
1805
|
+
"scope": "optional",
|
|
1806
|
+
"licenses": [
|
|
1807
|
+
{
|
|
1808
|
+
"license": {
|
|
1809
|
+
"id": "MIT",
|
|
1810
|
+
"acknowledgement": "declared"
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
],
|
|
1814
|
+
"purl": "pkg:npm/http-proxy-agent@7.0.2#packages/http-proxy-agent",
|
|
1815
|
+
"externalReferences": [
|
|
1816
|
+
{
|
|
1817
|
+
"url": "git+https://github.com/TooTallNate/proxy-agents.git#packages/http-proxy-agent",
|
|
1818
|
+
"type": "vcs",
|
|
1819
|
+
"comment": "as detected from PackageJson property \"repository.url\" and \"repository.directory\""
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"url": "https://github.com/TooTallNate/proxy-agents#readme",
|
|
1823
|
+
"type": "website",
|
|
1824
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"url": "https://github.com/TooTallNate/proxy-agents/issues",
|
|
1828
|
+
"type": "issue-tracker",
|
|
1829
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"url": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
1833
|
+
"type": "distribution",
|
|
1834
|
+
"hashes": [
|
|
1835
|
+
{
|
|
1836
|
+
"alg": "SHA-512",
|
|
1837
|
+
"content": "4f58240226180d6631dd5e419b2bbb1dc7dcbcbee652b4d688ceb239f6b73c8a6156227f8053dbbe2750faf7aa48e1dc8bf3f105c0da6de50d0b3a4e3832598a"
|
|
1838
|
+
}
|
|
1839
|
+
],
|
|
1840
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
"properties": [
|
|
1844
|
+
{
|
|
1845
|
+
"name": "cdx:npm:package:path",
|
|
1846
|
+
"value": "node_modules/http-proxy-agent"
|
|
1847
|
+
}
|
|
1848
|
+
]
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"type": "library",
|
|
1852
|
+
"name": "https-proxy-agent",
|
|
1853
|
+
"version": "7.0.6",
|
|
1854
|
+
"bom-ref": "beth-copilot@1.0.16|https-proxy-agent@7.0.6",
|
|
1855
|
+
"author": "Nathan Rajlich",
|
|
1856
|
+
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
|
|
1857
|
+
"scope": "optional",
|
|
1858
|
+
"licenses": [
|
|
1859
|
+
{
|
|
1860
|
+
"license": {
|
|
1861
|
+
"id": "MIT",
|
|
1862
|
+
"acknowledgement": "declared"
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
],
|
|
1866
|
+
"purl": "pkg:npm/https-proxy-agent@7.0.6#packages/https-proxy-agent",
|
|
1867
|
+
"externalReferences": [
|
|
1868
|
+
{
|
|
1869
|
+
"url": "git+https://github.com/TooTallNate/proxy-agents.git#packages/https-proxy-agent",
|
|
1870
|
+
"type": "vcs",
|
|
1871
|
+
"comment": "as detected from PackageJson property \"repository.url\" and \"repository.directory\""
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"url": "https://github.com/TooTallNate/proxy-agents#readme",
|
|
1875
|
+
"type": "website",
|
|
1876
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"url": "https://github.com/TooTallNate/proxy-agents/issues",
|
|
1880
|
+
"type": "issue-tracker",
|
|
1881
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"url": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
1885
|
+
"type": "distribution",
|
|
1886
|
+
"hashes": [
|
|
1887
|
+
{
|
|
1888
|
+
"alg": "SHA-512",
|
|
1889
|
+
"content": "bcaf4fe7f8947dd97de4023e255c94b88715b5de287efb6b3abdc736d336cb10bd6e731b11da77c74d4e8503678dbf082588b7f159531379815f071fbf2c2e4b"
|
|
1890
|
+
}
|
|
1891
|
+
],
|
|
1892
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1893
|
+
}
|
|
1894
|
+
],
|
|
1895
|
+
"properties": [
|
|
1896
|
+
{
|
|
1897
|
+
"name": "cdx:npm:package:path",
|
|
1898
|
+
"value": "node_modules/https-proxy-agent"
|
|
1899
|
+
}
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"type": "library",
|
|
1904
|
+
"name": "jws",
|
|
1905
|
+
"version": "4.0.1",
|
|
1906
|
+
"bom-ref": "beth-copilot@1.0.16|jws@4.0.1",
|
|
1907
|
+
"author": "Brian J Brennan",
|
|
1908
|
+
"description": "Implementation of JSON Web Signatures",
|
|
1909
|
+
"scope": "optional",
|
|
1910
|
+
"licenses": [
|
|
1911
|
+
{
|
|
1912
|
+
"license": {
|
|
1913
|
+
"id": "MIT",
|
|
1914
|
+
"acknowledgement": "declared"
|
|
1915
|
+
}
|
|
1916
|
+
}
|
|
1917
|
+
],
|
|
1918
|
+
"purl": "pkg:npm/jws@4.0.1",
|
|
1919
|
+
"externalReferences": [
|
|
1920
|
+
{
|
|
1921
|
+
"url": "git://github.com/brianloveswords/node-jws.git",
|
|
1922
|
+
"type": "vcs",
|
|
1923
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"url": "https://github.com/brianloveswords/node-jws#readme",
|
|
1927
|
+
"type": "website",
|
|
1928
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"url": "https://github.com/brianloveswords/node-jws/issues",
|
|
1932
|
+
"type": "issue-tracker",
|
|
1933
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"url": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
|
|
1937
|
+
"type": "distribution",
|
|
1938
|
+
"hashes": [
|
|
1939
|
+
{
|
|
1940
|
+
"alg": "SHA-512",
|
|
1941
|
+
"content": "10a23f33fcaa3e7706514878e31cf43f14a275716bffeaf4a40ef4fa0218863bfe7adef2c4cfacdbd63e5460e4a2f4687d07a6d1fb3b52f7f8f9898077245db8"
|
|
1942
|
+
}
|
|
1943
|
+
],
|
|
1944
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1945
|
+
}
|
|
1946
|
+
],
|
|
1947
|
+
"properties": [
|
|
1948
|
+
{
|
|
1949
|
+
"name": "cdx:npm:package:path",
|
|
1950
|
+
"value": "node_modules/jws"
|
|
1951
|
+
}
|
|
1952
|
+
]
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"type": "library",
|
|
1956
|
+
"name": "lodash.includes",
|
|
1957
|
+
"version": "4.3.0",
|
|
1958
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.includes@4.3.0",
|
|
1959
|
+
"author": "John-David Dalton",
|
|
1960
|
+
"description": "The lodash method `_.includes` exported as a module.",
|
|
1961
|
+
"scope": "optional",
|
|
1962
|
+
"licenses": [
|
|
1963
|
+
{
|
|
1964
|
+
"license": {
|
|
1965
|
+
"id": "MIT",
|
|
1966
|
+
"acknowledgement": "declared"
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
],
|
|
1970
|
+
"purl": "pkg:npm/lodash.includes@4.3.0",
|
|
1971
|
+
"externalReferences": [
|
|
1972
|
+
{
|
|
1973
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
1974
|
+
"type": "vcs",
|
|
1975
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"url": "https://lodash.com/",
|
|
1979
|
+
"type": "website",
|
|
1980
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
1984
|
+
"type": "issue-tracker",
|
|
1985
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"url": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
|
|
1989
|
+
"type": "distribution",
|
|
1990
|
+
"hashes": [
|
|
1991
|
+
{
|
|
1992
|
+
"alg": "SHA-512",
|
|
1993
|
+
"content": "5b7071ea67644531ad9492123af543fe56ea8d394f3d40d33279576459d5c22f4d289ead88093a2d5765859326d7b5598acaa129c833a4ee56cfdd4f0ade5bd3"
|
|
1994
|
+
}
|
|
1995
|
+
],
|
|
1996
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1997
|
+
}
|
|
1998
|
+
],
|
|
1999
|
+
"properties": [
|
|
2000
|
+
{
|
|
2001
|
+
"name": "cdx:npm:package:path",
|
|
2002
|
+
"value": "node_modules/lodash.includes"
|
|
2003
|
+
}
|
|
2004
|
+
]
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
"type": "library",
|
|
2008
|
+
"name": "lodash.isboolean",
|
|
2009
|
+
"version": "3.0.3",
|
|
2010
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.isboolean@3.0.3",
|
|
2011
|
+
"author": "John-David Dalton",
|
|
2012
|
+
"description": "The lodash method `_.isBoolean` exported as a module.",
|
|
2013
|
+
"scope": "optional",
|
|
2014
|
+
"licenses": [
|
|
2015
|
+
{
|
|
2016
|
+
"license": {
|
|
2017
|
+
"id": "MIT",
|
|
2018
|
+
"acknowledgement": "declared"
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
],
|
|
2022
|
+
"purl": "pkg:npm/lodash.isboolean@3.0.3",
|
|
2023
|
+
"externalReferences": [
|
|
2024
|
+
{
|
|
2025
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2026
|
+
"type": "vcs",
|
|
2027
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"url": "https://lodash.com/",
|
|
2031
|
+
"type": "website",
|
|
2032
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2036
|
+
"type": "issue-tracker",
|
|
2037
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"url": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
|
|
2041
|
+
"type": "distribution",
|
|
2042
|
+
"hashes": [
|
|
2043
|
+
{
|
|
2044
|
+
"alg": "SHA-512",
|
|
2045
|
+
"content": "073e66ba9cb64956cf1d4441f7c540730f9a1e1e2f455e483cd8482d40ac3b3466b13992435ee322eaa8a407a7b56a1e864b7119df5efe16c85eaf7cd3fd5026"
|
|
2046
|
+
}
|
|
2047
|
+
],
|
|
2048
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2049
|
+
}
|
|
2050
|
+
],
|
|
2051
|
+
"properties": [
|
|
2052
|
+
{
|
|
2053
|
+
"name": "cdx:npm:package:path",
|
|
2054
|
+
"value": "node_modules/lodash.isboolean"
|
|
2055
|
+
}
|
|
2056
|
+
]
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"type": "library",
|
|
2060
|
+
"name": "lodash.isinteger",
|
|
2061
|
+
"version": "4.0.4",
|
|
2062
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.isinteger@4.0.4",
|
|
2063
|
+
"author": "John-David Dalton",
|
|
2064
|
+
"description": "The lodash method `_.isInteger` exported as a module.",
|
|
2065
|
+
"scope": "optional",
|
|
2066
|
+
"licenses": [
|
|
2067
|
+
{
|
|
2068
|
+
"license": {
|
|
2069
|
+
"id": "MIT",
|
|
2070
|
+
"acknowledgement": "declared"
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
],
|
|
2074
|
+
"purl": "pkg:npm/lodash.isinteger@4.0.4",
|
|
2075
|
+
"externalReferences": [
|
|
2076
|
+
{
|
|
2077
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2078
|
+
"type": "vcs",
|
|
2079
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"url": "https://lodash.com/",
|
|
2083
|
+
"type": "website",
|
|
2084
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2088
|
+
"type": "issue-tracker",
|
|
2089
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"url": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
|
|
2093
|
+
"type": "distribution",
|
|
2094
|
+
"hashes": [
|
|
2095
|
+
{
|
|
2096
|
+
"alg": "SHA-512",
|
|
2097
|
+
"content": "0c1c2d11637671a1d0f7f8a688d784039cacd49a11b517d8ddded5f7092ab5bc9c9c0993bd14666c72835786b411873aefcfdd89ad23aed7b8b6363054169950"
|
|
2098
|
+
}
|
|
2099
|
+
],
|
|
2100
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2101
|
+
}
|
|
2102
|
+
],
|
|
2103
|
+
"properties": [
|
|
2104
|
+
{
|
|
2105
|
+
"name": "cdx:npm:package:path",
|
|
2106
|
+
"value": "node_modules/lodash.isinteger"
|
|
2107
|
+
}
|
|
2108
|
+
]
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"type": "library",
|
|
2112
|
+
"name": "lodash.isnumber",
|
|
2113
|
+
"version": "3.0.3",
|
|
2114
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.isnumber@3.0.3",
|
|
2115
|
+
"author": "John-David Dalton",
|
|
2116
|
+
"description": "The lodash method `_.isNumber` exported as a module.",
|
|
2117
|
+
"scope": "optional",
|
|
2118
|
+
"licenses": [
|
|
2119
|
+
{
|
|
2120
|
+
"license": {
|
|
2121
|
+
"id": "MIT",
|
|
2122
|
+
"acknowledgement": "declared"
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
"purl": "pkg:npm/lodash.isnumber@3.0.3",
|
|
2127
|
+
"externalReferences": [
|
|
2128
|
+
{
|
|
2129
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2130
|
+
"type": "vcs",
|
|
2131
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"url": "https://lodash.com/",
|
|
2135
|
+
"type": "website",
|
|
2136
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2140
|
+
"type": "issue-tracker",
|
|
2141
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"url": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
|
|
2145
|
+
"type": "distribution",
|
|
2146
|
+
"hashes": [
|
|
2147
|
+
{
|
|
2148
|
+
"alg": "SHA-512",
|
|
2149
|
+
"content": "418ab3a5fc0edff0967f75cff99fad910b1f68b2ff1275255d6564224e4550f738b017537a112a64e36ec91b763faecf5c093e35799305c73def3c3db75150af"
|
|
2150
|
+
}
|
|
2151
|
+
],
|
|
2152
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2153
|
+
}
|
|
2154
|
+
],
|
|
2155
|
+
"properties": [
|
|
2156
|
+
{
|
|
2157
|
+
"name": "cdx:npm:package:path",
|
|
2158
|
+
"value": "node_modules/lodash.isnumber"
|
|
2159
|
+
}
|
|
2160
|
+
]
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"type": "library",
|
|
2164
|
+
"name": "lodash.isplainobject",
|
|
2165
|
+
"version": "4.0.6",
|
|
2166
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.isplainobject@4.0.6",
|
|
2167
|
+
"author": "John-David Dalton",
|
|
2168
|
+
"description": "The lodash method `_.isPlainObject` exported as a module.",
|
|
2169
|
+
"scope": "optional",
|
|
2170
|
+
"licenses": [
|
|
2171
|
+
{
|
|
2172
|
+
"license": {
|
|
2173
|
+
"id": "MIT",
|
|
2174
|
+
"acknowledgement": "declared"
|
|
2175
|
+
}
|
|
2176
|
+
}
|
|
2177
|
+
],
|
|
2178
|
+
"purl": "pkg:npm/lodash.isplainobject@4.0.6",
|
|
2179
|
+
"externalReferences": [
|
|
2180
|
+
{
|
|
2181
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2182
|
+
"type": "vcs",
|
|
2183
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
"url": "https://lodash.com/",
|
|
2187
|
+
"type": "website",
|
|
2188
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2192
|
+
"type": "issue-tracker",
|
|
2193
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"url": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
|
|
2197
|
+
"type": "distribution",
|
|
2198
|
+
"hashes": [
|
|
2199
|
+
{
|
|
2200
|
+
"alg": "SHA-512",
|
|
2201
|
+
"content": "a125f3696ca908c1e43c2dcdbc111a3c77f42ac0399af3eb38f810583b1b83c9fba2b676f743340660bf8e0459e2f709e834c0863aec49881db16fc5f8c14e04"
|
|
2202
|
+
}
|
|
2203
|
+
],
|
|
2204
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2205
|
+
}
|
|
2206
|
+
],
|
|
2207
|
+
"properties": [
|
|
2208
|
+
{
|
|
2209
|
+
"name": "cdx:npm:package:path",
|
|
2210
|
+
"value": "node_modules/lodash.isplainobject"
|
|
2211
|
+
}
|
|
2212
|
+
]
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"type": "library",
|
|
2216
|
+
"name": "lodash.isstring",
|
|
2217
|
+
"version": "4.0.1",
|
|
2218
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.isstring@4.0.1",
|
|
2219
|
+
"author": "John-David Dalton",
|
|
2220
|
+
"description": "The lodash method `_.isString` exported as a module.",
|
|
2221
|
+
"scope": "optional",
|
|
2222
|
+
"licenses": [
|
|
2223
|
+
{
|
|
2224
|
+
"license": {
|
|
2225
|
+
"id": "MIT",
|
|
2226
|
+
"acknowledgement": "declared"
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2229
|
+
],
|
|
2230
|
+
"purl": "pkg:npm/lodash.isstring@4.0.1",
|
|
2231
|
+
"externalReferences": [
|
|
2232
|
+
{
|
|
2233
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2234
|
+
"type": "vcs",
|
|
2235
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"url": "https://lodash.com/",
|
|
2239
|
+
"type": "website",
|
|
2240
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2244
|
+
"type": "issue-tracker",
|
|
2245
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"url": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
|
|
2249
|
+
"type": "distribution",
|
|
2250
|
+
"hashes": [
|
|
2251
|
+
{
|
|
2252
|
+
"alg": "SHA-512",
|
|
2253
|
+
"content": "d302717f11f5c203b71ab6ee3fe7534e4ee8a7ee8be354025db188344983fa7cbf1bf782a86cf1c82b21ef5e7d4be9a00c37286ab9c1c3a3c2d4f4b9fb050683"
|
|
2254
|
+
}
|
|
2255
|
+
],
|
|
2256
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2257
|
+
}
|
|
2258
|
+
],
|
|
2259
|
+
"properties": [
|
|
2260
|
+
{
|
|
2261
|
+
"name": "cdx:npm:package:path",
|
|
2262
|
+
"value": "node_modules/lodash.isstring"
|
|
2263
|
+
}
|
|
2264
|
+
]
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"type": "library",
|
|
2268
|
+
"name": "lodash.once",
|
|
2269
|
+
"version": "4.1.1",
|
|
2270
|
+
"bom-ref": "beth-copilot@1.0.16|lodash.once@4.1.1",
|
|
2271
|
+
"author": "John-David Dalton",
|
|
2272
|
+
"description": "The lodash method `_.once` exported as a module.",
|
|
2273
|
+
"scope": "optional",
|
|
2274
|
+
"licenses": [
|
|
2275
|
+
{
|
|
2276
|
+
"license": {
|
|
2277
|
+
"id": "MIT",
|
|
2278
|
+
"acknowledgement": "declared"
|
|
2279
|
+
}
|
|
2280
|
+
}
|
|
2281
|
+
],
|
|
2282
|
+
"purl": "pkg:npm/lodash.once@4.1.1",
|
|
2283
|
+
"externalReferences": [
|
|
2284
|
+
{
|
|
2285
|
+
"url": "git+https://github.com/lodash/lodash.git",
|
|
2286
|
+
"type": "vcs",
|
|
2287
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
"url": "https://lodash.com/",
|
|
2291
|
+
"type": "website",
|
|
2292
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
"url": "https://github.com/lodash/lodash/issues",
|
|
2296
|
+
"type": "issue-tracker",
|
|
2297
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"url": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
|
|
2301
|
+
"type": "distribution",
|
|
2302
|
+
"hashes": [
|
|
2303
|
+
{
|
|
2304
|
+
"alg": "SHA-512",
|
|
2305
|
+
"content": "49be3ceda4ce0abf5dad054bf292313b356169f3a364df54539e2188df0f537b8089257b971d7260da5b3667b1d8f2ba752268353489514b304fae75cb0c3732"
|
|
2306
|
+
}
|
|
2307
|
+
],
|
|
2308
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2309
|
+
}
|
|
2310
|
+
],
|
|
2311
|
+
"properties": [
|
|
2312
|
+
{
|
|
2313
|
+
"name": "cdx:npm:package:path",
|
|
2314
|
+
"value": "node_modules/lodash.once"
|
|
2315
|
+
}
|
|
2316
|
+
]
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
"type": "library",
|
|
2320
|
+
"name": "ms",
|
|
2321
|
+
"version": "2.1.3",
|
|
2322
|
+
"bom-ref": "beth-copilot@1.0.16|ms@2.1.3",
|
|
2323
|
+
"description": "Tiny millisecond conversion utility",
|
|
2324
|
+
"scope": "optional",
|
|
2325
|
+
"licenses": [
|
|
2326
|
+
{
|
|
2327
|
+
"license": {
|
|
2328
|
+
"id": "MIT",
|
|
2329
|
+
"acknowledgement": "declared"
|
|
2330
|
+
}
|
|
2331
|
+
}
|
|
2332
|
+
],
|
|
2333
|
+
"purl": "pkg:npm/ms@2.1.3",
|
|
2334
|
+
"externalReferences": [
|
|
2335
|
+
{
|
|
2336
|
+
"url": "git+https://github.com/vercel/ms.git",
|
|
2337
|
+
"type": "vcs",
|
|
2338
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"url": "https://github.com/vercel/ms#readme",
|
|
2342
|
+
"type": "website",
|
|
2343
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"url": "https://github.com/vercel/ms/issues",
|
|
2347
|
+
"type": "issue-tracker",
|
|
2348
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"url": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2352
|
+
"type": "distribution",
|
|
2353
|
+
"hashes": [
|
|
2354
|
+
{
|
|
2355
|
+
"alg": "SHA-512",
|
|
2356
|
+
"content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394"
|
|
2357
|
+
}
|
|
2358
|
+
],
|
|
2359
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2360
|
+
}
|
|
2361
|
+
],
|
|
2362
|
+
"properties": [
|
|
2363
|
+
{
|
|
2364
|
+
"name": "cdx:npm:package:path",
|
|
2365
|
+
"value": "node_modules/ms"
|
|
2366
|
+
}
|
|
2367
|
+
]
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"type": "library",
|
|
2371
|
+
"name": "semver",
|
|
2372
|
+
"version": "7.7.4",
|
|
2373
|
+
"bom-ref": "beth-copilot@1.0.16|semver@7.7.4",
|
|
2374
|
+
"author": "GitHub Inc.",
|
|
2375
|
+
"description": "The semantic version parser used by npm.",
|
|
2376
|
+
"scope": "optional",
|
|
2377
|
+
"licenses": [
|
|
2378
|
+
{
|
|
2379
|
+
"license": {
|
|
2380
|
+
"id": "ISC",
|
|
2381
|
+
"acknowledgement": "declared"
|
|
2382
|
+
}
|
|
2383
|
+
}
|
|
2384
|
+
],
|
|
2385
|
+
"purl": "pkg:npm/semver@7.7.4",
|
|
2386
|
+
"externalReferences": [
|
|
2387
|
+
{
|
|
2388
|
+
"url": "git+https://github.com/npm/node-semver.git",
|
|
2389
|
+
"type": "vcs",
|
|
2390
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"url": "https://github.com/npm/node-semver#readme",
|
|
2394
|
+
"type": "website",
|
|
2395
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"url": "https://github.com/npm/node-semver/issues",
|
|
2399
|
+
"type": "issue-tracker",
|
|
2400
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"url": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
2404
|
+
"type": "distribution",
|
|
2405
|
+
"hashes": [
|
|
2406
|
+
{
|
|
2407
|
+
"alg": "SHA-512",
|
|
2408
|
+
"content": "bc5282d8812d427561a53efc875629f30cf0adff0233e33328c1c62597c1b738593727111675ec1e4e84e53c4892432c80d4bb99d5f700607bc7640cd9d8b894"
|
|
2409
|
+
}
|
|
2410
|
+
],
|
|
2411
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2412
|
+
}
|
|
2413
|
+
],
|
|
2414
|
+
"properties": [
|
|
2415
|
+
{
|
|
2416
|
+
"name": "cdx:npm:package:path",
|
|
2417
|
+
"value": "node_modules/semver"
|
|
2418
|
+
}
|
|
2419
|
+
]
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"type": "library",
|
|
2423
|
+
"name": "bundle-name",
|
|
2424
|
+
"version": "4.1.0",
|
|
2425
|
+
"bom-ref": "beth-copilot@1.0.16|bundle-name@4.1.0",
|
|
2426
|
+
"author": "Sindre Sorhus",
|
|
2427
|
+
"description": "Get bundle name from a bundle identifier (macOS): `com.apple.Safari` → `Safari`",
|
|
2428
|
+
"scope": "optional",
|
|
2429
|
+
"licenses": [
|
|
2430
|
+
{
|
|
2431
|
+
"license": {
|
|
2432
|
+
"id": "MIT",
|
|
2433
|
+
"acknowledgement": "declared"
|
|
2434
|
+
}
|
|
2435
|
+
}
|
|
2436
|
+
],
|
|
2437
|
+
"purl": "pkg:npm/bundle-name@4.1.0",
|
|
2438
|
+
"externalReferences": [
|
|
2439
|
+
{
|
|
2440
|
+
"url": "git+https://github.com/sindresorhus/bundle-name.git",
|
|
2441
|
+
"type": "vcs",
|
|
2442
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
"url": "https://github.com/sindresorhus/bundle-name#readme",
|
|
2446
|
+
"type": "website",
|
|
2447
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"url": "https://github.com/sindresorhus/bundle-name/issues",
|
|
2451
|
+
"type": "issue-tracker",
|
|
2452
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"url": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
|
|
2456
|
+
"type": "distribution",
|
|
2457
|
+
"hashes": [
|
|
2458
|
+
{
|
|
2459
|
+
"alg": "SHA-512",
|
|
2460
|
+
"content": "b63c0ce5ec4c83a046448fa43664e7b4db2f7594b55fc045612ead9c9da1747d2457133afde559db1cbe16a4ad496bd89ad7c53032c8c6eae8ac7c0329f0f3e5"
|
|
2461
|
+
}
|
|
2462
|
+
],
|
|
2463
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2464
|
+
}
|
|
2465
|
+
],
|
|
2466
|
+
"properties": [
|
|
2467
|
+
{
|
|
2468
|
+
"name": "cdx:npm:package:path",
|
|
2469
|
+
"value": "node_modules/bundle-name"
|
|
2470
|
+
}
|
|
2471
|
+
]
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"type": "library",
|
|
2475
|
+
"name": "default-browser-id",
|
|
2476
|
+
"version": "5.0.1",
|
|
2477
|
+
"bom-ref": "beth-copilot@1.0.16|default-browser-id@5.0.1",
|
|
2478
|
+
"author": "Sindre Sorhus",
|
|
2479
|
+
"description": "Get the bundle identifier of the default browser (macOS). Example: com.apple.Safari",
|
|
2480
|
+
"scope": "optional",
|
|
2481
|
+
"licenses": [
|
|
2482
|
+
{
|
|
2483
|
+
"license": {
|
|
2484
|
+
"id": "MIT",
|
|
2485
|
+
"acknowledgement": "declared"
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
],
|
|
2489
|
+
"purl": "pkg:npm/default-browser-id@5.0.1",
|
|
2490
|
+
"externalReferences": [
|
|
2491
|
+
{
|
|
2492
|
+
"url": "git+https://github.com/sindresorhus/default-browser-id.git",
|
|
2493
|
+
"type": "vcs",
|
|
2494
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
"url": "https://github.com/sindresorhus/default-browser-id#readme",
|
|
2498
|
+
"type": "website",
|
|
2499
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
"url": "https://github.com/sindresorhus/default-browser-id/issues",
|
|
2503
|
+
"type": "issue-tracker",
|
|
2504
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"url": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz",
|
|
2508
|
+
"type": "distribution",
|
|
2509
|
+
"hashes": [
|
|
2510
|
+
{
|
|
2511
|
+
"alg": "SHA-512",
|
|
2512
|
+
"content": "c75542c5d5f8b7ef3055f775b28ffdc3ebd0e2fc7b94a776429e6d0d1bad12bc2647ce4e8267d7ed194b44c59a7d1318ee16c489721bb9d36b8ce00f6bf84bf1"
|
|
2513
|
+
}
|
|
2514
|
+
],
|
|
2515
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2516
|
+
}
|
|
2517
|
+
],
|
|
2518
|
+
"properties": [
|
|
2519
|
+
{
|
|
2520
|
+
"name": "cdx:npm:package:path",
|
|
2521
|
+
"value": "node_modules/default-browser-id"
|
|
2522
|
+
}
|
|
2523
|
+
]
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"type": "library",
|
|
2527
|
+
"name": "is-docker",
|
|
2528
|
+
"version": "3.0.0",
|
|
2529
|
+
"bom-ref": "beth-copilot@1.0.16|is-docker@3.0.0",
|
|
2530
|
+
"author": "Sindre Sorhus",
|
|
2531
|
+
"description": "Check if the process is running inside a Docker container",
|
|
2532
|
+
"scope": "optional",
|
|
2533
|
+
"licenses": [
|
|
2534
|
+
{
|
|
2535
|
+
"license": {
|
|
2536
|
+
"id": "MIT",
|
|
2537
|
+
"acknowledgement": "declared"
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
],
|
|
2541
|
+
"purl": "pkg:npm/is-docker@3.0.0",
|
|
2542
|
+
"externalReferences": [
|
|
2543
|
+
{
|
|
2544
|
+
"url": "git+https://github.com/sindresorhus/is-docker.git",
|
|
2545
|
+
"type": "vcs",
|
|
2546
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
"url": "https://github.com/sindresorhus/is-docker#readme",
|
|
2550
|
+
"type": "website",
|
|
2551
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"url": "https://github.com/sindresorhus/is-docker/issues",
|
|
2555
|
+
"type": "issue-tracker",
|
|
2556
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"url": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
|
|
2560
|
+
"type": "distribution",
|
|
2561
|
+
"hashes": [
|
|
2562
|
+
{
|
|
2563
|
+
"alg": "SHA-512",
|
|
2564
|
+
"content": "7a58dc8040e5127b3fec05c5a2c0792bfda708ce0fec540f90673f0d62f2e6b985116bd96b21ab8a4d5df7f4086399c9e1ff58b15bc1900ea42691e7f6b21275"
|
|
2565
|
+
}
|
|
2566
|
+
],
|
|
2567
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2568
|
+
}
|
|
2569
|
+
],
|
|
2570
|
+
"properties": [
|
|
2571
|
+
{
|
|
2572
|
+
"name": "cdx:npm:package:path",
|
|
2573
|
+
"value": "node_modules/is-docker"
|
|
2574
|
+
}
|
|
2575
|
+
]
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"type": "library",
|
|
2579
|
+
"name": "is-wsl",
|
|
2580
|
+
"version": "3.1.1",
|
|
2581
|
+
"bom-ref": "beth-copilot@1.0.16|is-wsl@3.1.1",
|
|
2582
|
+
"author": "Sindre Sorhus",
|
|
2583
|
+
"description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)",
|
|
2584
|
+
"scope": "optional",
|
|
2585
|
+
"licenses": [
|
|
2586
|
+
{
|
|
2587
|
+
"license": {
|
|
2588
|
+
"id": "MIT",
|
|
2589
|
+
"acknowledgement": "declared"
|
|
2590
|
+
}
|
|
2591
|
+
}
|
|
2592
|
+
],
|
|
2593
|
+
"purl": "pkg:npm/is-wsl@3.1.1",
|
|
2594
|
+
"externalReferences": [
|
|
2595
|
+
{
|
|
2596
|
+
"url": "git+https://github.com/sindresorhus/is-wsl.git",
|
|
2597
|
+
"type": "vcs",
|
|
2598
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"url": "https://github.com/sindresorhus/is-wsl#readme",
|
|
2602
|
+
"type": "website",
|
|
2603
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
"url": "https://github.com/sindresorhus/is-wsl/issues",
|
|
2607
|
+
"type": "issue-tracker",
|
|
2608
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2609
|
+
},
|
|
2610
|
+
{
|
|
2611
|
+
"url": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz",
|
|
2612
|
+
"type": "distribution",
|
|
2613
|
+
"hashes": [
|
|
2614
|
+
{
|
|
2615
|
+
"alg": "SHA-512",
|
|
2616
|
+
"content": "7baaef7540a240202eba666c971449591fc3a2ae15a4f47cda4a9c96f712d1e7e0b78df44a5188934e6f742379f3e56bce0b4871f34e0e3a335627a5c9c0f84b"
|
|
2617
|
+
}
|
|
2618
|
+
],
|
|
2619
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2620
|
+
}
|
|
2621
|
+
],
|
|
2622
|
+
"properties": [
|
|
2623
|
+
{
|
|
2624
|
+
"name": "cdx:npm:package:path",
|
|
2625
|
+
"value": "node_modules/is-wsl"
|
|
2626
|
+
}
|
|
2627
|
+
]
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"type": "library",
|
|
2631
|
+
"name": "sprintf-js",
|
|
2632
|
+
"version": "1.0.3",
|
|
2633
|
+
"bom-ref": "beth-copilot@1.0.16|sprintf-js@1.0.3",
|
|
2634
|
+
"author": "Alexandru Marasteanu",
|
|
2635
|
+
"description": "JavaScript sprintf implementation",
|
|
2636
|
+
"licenses": [
|
|
2637
|
+
{
|
|
2638
|
+
"license": {
|
|
2639
|
+
"id": "BSD-3-Clause",
|
|
2640
|
+
"acknowledgement": "declared"
|
|
2641
|
+
}
|
|
2642
|
+
}
|
|
2643
|
+
],
|
|
2644
|
+
"purl": "pkg:npm/sprintf-js@1.0.3",
|
|
2645
|
+
"externalReferences": [
|
|
2646
|
+
{
|
|
2647
|
+
"url": "git+https://github.com/alexei/sprintf.js.git",
|
|
2648
|
+
"type": "vcs",
|
|
2649
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"url": "https://github.com/alexei/sprintf.js#readme",
|
|
2653
|
+
"type": "website",
|
|
2654
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
"url": "https://github.com/alexei/sprintf.js/issues",
|
|
2658
|
+
"type": "issue-tracker",
|
|
2659
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
"url": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
|
2663
|
+
"type": "distribution",
|
|
2664
|
+
"hashes": [
|
|
2665
|
+
{
|
|
2666
|
+
"alg": "SHA-512",
|
|
2667
|
+
"content": "0fd70f824bcb955deddc8ccbd03d182ef180f40864e0f72f57051b3747521abd5a3f436bb780049d351bb86beab840b4980eb81aab757f38ab951b3989b5f1f2"
|
|
2668
|
+
}
|
|
2669
|
+
],
|
|
2670
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2671
|
+
}
|
|
2672
|
+
],
|
|
2673
|
+
"properties": [
|
|
2674
|
+
{
|
|
2675
|
+
"name": "cdx:npm:package:path",
|
|
2676
|
+
"value": "node_modules/sprintf-js"
|
|
2677
|
+
}
|
|
2678
|
+
]
|
|
2679
|
+
},
|
|
2680
|
+
{
|
|
2681
|
+
"type": "library",
|
|
2682
|
+
"name": "is-extendable",
|
|
2683
|
+
"version": "0.1.1",
|
|
2684
|
+
"bom-ref": "beth-copilot@1.0.16|is-extendable@0.1.1",
|
|
2685
|
+
"author": "Jon Schlinkert",
|
|
2686
|
+
"description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"",
|
|
2687
|
+
"licenses": [
|
|
2688
|
+
{
|
|
2689
|
+
"license": {
|
|
2690
|
+
"id": "MIT",
|
|
2691
|
+
"acknowledgement": "declared"
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2694
|
+
],
|
|
2695
|
+
"purl": "pkg:npm/is-extendable@0.1.1",
|
|
2696
|
+
"externalReferences": [
|
|
2697
|
+
{
|
|
2698
|
+
"url": "git+https://github.com/jonschlinkert/is-extendable.git",
|
|
2699
|
+
"type": "vcs",
|
|
2700
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"url": "https://github.com/jonschlinkert/is-extendable",
|
|
2704
|
+
"type": "website",
|
|
2705
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"url": "https://github.com/jonschlinkert/is-extendable/issues",
|
|
2709
|
+
"type": "issue-tracker",
|
|
2710
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
"url": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
|
|
2714
|
+
"type": "distribution",
|
|
2715
|
+
"hashes": [
|
|
2716
|
+
{
|
|
2717
|
+
"alg": "SHA-512",
|
|
2718
|
+
"content": "e413142cda1bd6f8055fa123430e62cd60f1ade7162bd00cef6aee80daf44c595d30e8b47e3e8993ecde288b74c468f87047d0209b61e30dce296389e1ff8017"
|
|
2719
|
+
}
|
|
2720
|
+
],
|
|
2721
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2722
|
+
}
|
|
2723
|
+
],
|
|
2724
|
+
"properties": [
|
|
2725
|
+
{
|
|
2726
|
+
"name": "cdx:npm:package:path",
|
|
2727
|
+
"value": "node_modules/is-extendable"
|
|
2728
|
+
}
|
|
2729
|
+
]
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
"type": "library",
|
|
2733
|
+
"name": "agent-base",
|
|
2734
|
+
"version": "7.1.4",
|
|
2735
|
+
"bom-ref": "beth-copilot@1.0.16|agent-base@7.1.4",
|
|
2736
|
+
"author": "Nathan Rajlich",
|
|
2737
|
+
"description": "Turn a function into an `http.Agent` instance",
|
|
2738
|
+
"scope": "optional",
|
|
2739
|
+
"licenses": [
|
|
2740
|
+
{
|
|
2741
|
+
"license": {
|
|
2742
|
+
"id": "MIT",
|
|
2743
|
+
"acknowledgement": "declared"
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
],
|
|
2747
|
+
"purl": "pkg:npm/agent-base@7.1.4#packages/agent-base",
|
|
2748
|
+
"externalReferences": [
|
|
2749
|
+
{
|
|
2750
|
+
"url": "git+https://github.com/TooTallNate/proxy-agents.git#packages/agent-base",
|
|
2751
|
+
"type": "vcs",
|
|
2752
|
+
"comment": "as detected from PackageJson property \"repository.url\" and \"repository.directory\""
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"url": "https://github.com/TooTallNate/proxy-agents#readme",
|
|
2756
|
+
"type": "website",
|
|
2757
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"url": "https://github.com/TooTallNate/proxy-agents/issues",
|
|
2761
|
+
"type": "issue-tracker",
|
|
2762
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"url": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
2766
|
+
"type": "distribution",
|
|
2767
|
+
"hashes": [
|
|
2768
|
+
{
|
|
2769
|
+
"alg": "SHA-512",
|
|
2770
|
+
"content": "32703e613f1fc1f24f801c779bad0c36a6a49b7d173a4c88a07d72ea1b9342f0b43f0646ee48bc35a70b05cacf6cda28f2f119cbb269ba4efe8cc3be094a2f4d"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2774
|
+
}
|
|
2775
|
+
],
|
|
2776
|
+
"properties": [
|
|
2777
|
+
{
|
|
2778
|
+
"name": "cdx:npm:package:path",
|
|
2779
|
+
"value": "node_modules/agent-base"
|
|
2780
|
+
}
|
|
2781
|
+
]
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"type": "library",
|
|
2785
|
+
"name": "debug",
|
|
2786
|
+
"version": "4.4.3",
|
|
2787
|
+
"bom-ref": "beth-copilot@1.0.16|debug@4.4.3",
|
|
2788
|
+
"author": "Josh Junon",
|
|
2789
|
+
"description": "Lightweight debugging utility for Node.js and the browser",
|
|
2790
|
+
"scope": "optional",
|
|
2791
|
+
"licenses": [
|
|
2792
|
+
{
|
|
2793
|
+
"license": {
|
|
2794
|
+
"id": "MIT",
|
|
2795
|
+
"acknowledgement": "declared"
|
|
2796
|
+
}
|
|
2797
|
+
}
|
|
2798
|
+
],
|
|
2799
|
+
"purl": "pkg:npm/debug@4.4.3",
|
|
2800
|
+
"externalReferences": [
|
|
2801
|
+
{
|
|
2802
|
+
"url": "git://github.com/debug-js/debug.git",
|
|
2803
|
+
"type": "vcs",
|
|
2804
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
"url": "https://github.com/debug-js/debug#readme",
|
|
2808
|
+
"type": "website",
|
|
2809
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"url": "https://github.com/debug-js/debug/issues",
|
|
2813
|
+
"type": "issue-tracker",
|
|
2814
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"url": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
2818
|
+
"type": "distribution",
|
|
2819
|
+
"hashes": [
|
|
2820
|
+
{
|
|
2821
|
+
"alg": "SHA-512",
|
|
2822
|
+
"content": "446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8"
|
|
2823
|
+
}
|
|
2824
|
+
],
|
|
2825
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2826
|
+
}
|
|
2827
|
+
],
|
|
2828
|
+
"properties": [
|
|
2829
|
+
{
|
|
2830
|
+
"name": "cdx:npm:package:path",
|
|
2831
|
+
"value": "node_modules/debug"
|
|
2832
|
+
}
|
|
2833
|
+
]
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
"type": "library",
|
|
2837
|
+
"name": "jwa",
|
|
2838
|
+
"version": "2.0.1",
|
|
2839
|
+
"bom-ref": "beth-copilot@1.0.16|jwa@2.0.1",
|
|
2840
|
+
"author": "Brian J. Brennan",
|
|
2841
|
+
"description": "JWA implementation (supports all JWS algorithms)",
|
|
2842
|
+
"scope": "optional",
|
|
2843
|
+
"licenses": [
|
|
2844
|
+
{
|
|
2845
|
+
"license": {
|
|
2846
|
+
"id": "MIT",
|
|
2847
|
+
"acknowledgement": "declared"
|
|
2848
|
+
}
|
|
2849
|
+
}
|
|
2850
|
+
],
|
|
2851
|
+
"purl": "pkg:npm/jwa@2.0.1",
|
|
2852
|
+
"externalReferences": [
|
|
2853
|
+
{
|
|
2854
|
+
"url": "git://github.com/brianloveswords/node-jwa.git",
|
|
2855
|
+
"type": "vcs",
|
|
2856
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"url": "https://github.com/brianloveswords/node-jwa#readme",
|
|
2860
|
+
"type": "website",
|
|
2861
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
"url": "https://github.com/brianloveswords/node-jwa/issues",
|
|
2865
|
+
"type": "issue-tracker",
|
|
2866
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"url": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
|
|
2870
|
+
"type": "distribution",
|
|
2871
|
+
"hashes": [
|
|
2872
|
+
{
|
|
2873
|
+
"alg": "SHA-512",
|
|
2874
|
+
"content": "851174e1fa8920ff006db92ae4d28637405baf7271950faa859b9f5d5af40efba32b2f776426d764c1c32f810eb687526c25b13aa47c312d6d5c0e61c2a0970e"
|
|
2875
|
+
}
|
|
2876
|
+
],
|
|
2877
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2878
|
+
}
|
|
2879
|
+
],
|
|
2880
|
+
"properties": [
|
|
2881
|
+
{
|
|
2882
|
+
"name": "cdx:npm:package:path",
|
|
2883
|
+
"value": "node_modules/jwa"
|
|
2884
|
+
}
|
|
2885
|
+
]
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
"type": "library",
|
|
2889
|
+
"name": "safe-buffer",
|
|
2890
|
+
"version": "5.2.1",
|
|
2891
|
+
"bom-ref": "beth-copilot@1.0.16|safe-buffer@5.2.1",
|
|
2892
|
+
"author": "Feross Aboukhadijeh",
|
|
2893
|
+
"description": "Safer Node.js Buffer API",
|
|
2894
|
+
"scope": "optional",
|
|
2895
|
+
"licenses": [
|
|
2896
|
+
{
|
|
2897
|
+
"license": {
|
|
2898
|
+
"id": "MIT",
|
|
2899
|
+
"acknowledgement": "declared"
|
|
2900
|
+
}
|
|
2901
|
+
}
|
|
2902
|
+
],
|
|
2903
|
+
"purl": "pkg:npm/safe-buffer@5.2.1",
|
|
2904
|
+
"externalReferences": [
|
|
2905
|
+
{
|
|
2906
|
+
"url": "git://github.com/feross/safe-buffer.git",
|
|
2907
|
+
"type": "vcs",
|
|
2908
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"url": "https://github.com/feross/safe-buffer",
|
|
2912
|
+
"type": "website",
|
|
2913
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
"url": "https://github.com/feross/safe-buffer/issues",
|
|
2917
|
+
"type": "issue-tracker",
|
|
2918
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
"url": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
2922
|
+
"type": "distribution",
|
|
2923
|
+
"hashes": [
|
|
2924
|
+
{
|
|
2925
|
+
"alg": "SHA-512",
|
|
2926
|
+
"content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d"
|
|
2927
|
+
}
|
|
2928
|
+
],
|
|
2929
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2930
|
+
}
|
|
2931
|
+
],
|
|
2932
|
+
"properties": [
|
|
2933
|
+
{
|
|
2934
|
+
"name": "cdx:npm:package:path",
|
|
2935
|
+
"value": "node_modules/safe-buffer"
|
|
2936
|
+
}
|
|
2937
|
+
]
|
|
2938
|
+
},
|
|
2939
|
+
{
|
|
2940
|
+
"type": "library",
|
|
2941
|
+
"name": "run-applescript",
|
|
2942
|
+
"version": "7.1.0",
|
|
2943
|
+
"bom-ref": "beth-copilot@1.0.16|run-applescript@7.1.0",
|
|
2944
|
+
"author": "Sindre Sorhus",
|
|
2945
|
+
"description": "Run AppleScript and get the result",
|
|
2946
|
+
"scope": "optional",
|
|
2947
|
+
"licenses": [
|
|
2948
|
+
{
|
|
2949
|
+
"license": {
|
|
2950
|
+
"id": "MIT",
|
|
2951
|
+
"acknowledgement": "declared"
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
],
|
|
2955
|
+
"purl": "pkg:npm/run-applescript@7.1.0",
|
|
2956
|
+
"externalReferences": [
|
|
2957
|
+
{
|
|
2958
|
+
"url": "git+https://github.com/sindresorhus/run-applescript.git",
|
|
2959
|
+
"type": "vcs",
|
|
2960
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"url": "https://github.com/sindresorhus/run-applescript#readme",
|
|
2964
|
+
"type": "website",
|
|
2965
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
2966
|
+
},
|
|
2967
|
+
{
|
|
2968
|
+
"url": "https://github.com/sindresorhus/run-applescript/issues",
|
|
2969
|
+
"type": "issue-tracker",
|
|
2970
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
"url": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
|
|
2974
|
+
"type": "distribution",
|
|
2975
|
+
"hashes": [
|
|
2976
|
+
{
|
|
2977
|
+
"alg": "SHA-512",
|
|
2978
|
+
"content": "0cf7b9a5515a02c8a749a57a42343a81d89e7560dc4426d4ba241f41adb099657bfb10bd6c6ba5188f3e4dd466a059003da05793c0ab01b9e56362129e2278ed"
|
|
2979
|
+
}
|
|
2980
|
+
],
|
|
2981
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
2982
|
+
}
|
|
2983
|
+
],
|
|
2984
|
+
"properties": [
|
|
2985
|
+
{
|
|
2986
|
+
"name": "cdx:npm:package:path",
|
|
2987
|
+
"value": "node_modules/run-applescript"
|
|
2988
|
+
}
|
|
2989
|
+
]
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
"type": "library",
|
|
2993
|
+
"name": "buffer-equal-constant-time",
|
|
2994
|
+
"version": "1.0.1",
|
|
2995
|
+
"bom-ref": "beth-copilot@1.0.16|buffer-equal-constant-time@1.0.1",
|
|
2996
|
+
"author": "GoInstant Inc., a salesforce.com company",
|
|
2997
|
+
"description": "Constant-time comparison of Buffers",
|
|
2998
|
+
"scope": "optional",
|
|
2999
|
+
"licenses": [
|
|
3000
|
+
{
|
|
3001
|
+
"license": {
|
|
3002
|
+
"id": "BSD-3-Clause",
|
|
3003
|
+
"acknowledgement": "declared"
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
],
|
|
3007
|
+
"purl": "pkg:npm/buffer-equal-constant-time@1.0.1",
|
|
3008
|
+
"externalReferences": [
|
|
3009
|
+
{
|
|
3010
|
+
"url": "git+ssh://git@github.com/goinstant/buffer-equal-constant-time.git",
|
|
3011
|
+
"type": "vcs",
|
|
3012
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
"url": "https://github.com/goinstant/buffer-equal-constant-time#readme",
|
|
3016
|
+
"type": "website",
|
|
3017
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
"url": "https://github.com/goinstant/buffer-equal-constant-time/issues",
|
|
3021
|
+
"type": "issue-tracker",
|
|
3022
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
3023
|
+
},
|
|
3024
|
+
{
|
|
3025
|
+
"url": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
|
|
3026
|
+
"type": "distribution",
|
|
3027
|
+
"hashes": [
|
|
3028
|
+
{
|
|
3029
|
+
"alg": "SHA-512",
|
|
3030
|
+
"content": "cd1a54883c1dff193a003a8f3004c6f2f73d54fae4724ed3d3b388c748278e62409c79d35573501b7bdfbd636e899224c2ef4aaca740d6224a7ec7d357113a34"
|
|
3031
|
+
}
|
|
3032
|
+
],
|
|
3033
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
3034
|
+
}
|
|
3035
|
+
],
|
|
3036
|
+
"properties": [
|
|
3037
|
+
{
|
|
3038
|
+
"name": "cdx:npm:package:path",
|
|
3039
|
+
"value": "node_modules/buffer-equal-constant-time"
|
|
3040
|
+
}
|
|
3041
|
+
]
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
"type": "library",
|
|
3045
|
+
"name": "ecdsa-sig-formatter",
|
|
3046
|
+
"version": "1.0.11",
|
|
3047
|
+
"bom-ref": "beth-copilot@1.0.16|ecdsa-sig-formatter@1.0.11",
|
|
3048
|
+
"author": "D2L Corporation",
|
|
3049
|
+
"description": "Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation",
|
|
3050
|
+
"scope": "optional",
|
|
3051
|
+
"licenses": [
|
|
3052
|
+
{
|
|
3053
|
+
"license": {
|
|
3054
|
+
"id": "Apache-2.0",
|
|
3055
|
+
"acknowledgement": "declared"
|
|
3056
|
+
}
|
|
3057
|
+
}
|
|
3058
|
+
],
|
|
3059
|
+
"purl": "pkg:npm/ecdsa-sig-formatter@1.0.11",
|
|
3060
|
+
"externalReferences": [
|
|
3061
|
+
{
|
|
3062
|
+
"url": "git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git",
|
|
3063
|
+
"type": "vcs",
|
|
3064
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"url": "https://github.com/Brightspace/node-ecdsa-sig-formatter#readme",
|
|
3068
|
+
"type": "website",
|
|
3069
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"url": "https://github.com/Brightspace/node-ecdsa-sig-formatter/issues",
|
|
3073
|
+
"type": "issue-tracker",
|
|
3074
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"url": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
|
3078
|
+
"type": "distribution",
|
|
3079
|
+
"hashes": [
|
|
3080
|
+
{
|
|
3081
|
+
"alg": "SHA-512",
|
|
3082
|
+
"content": "9da825dd162b6cdbfa91091e248a6de8d259cbcb702c1ff6bedcfac8df59e2f44a1cde3f41924811baa88402d283029d9e4b2e63793901d769e6583cb15a1571"
|
|
3083
|
+
}
|
|
3084
|
+
],
|
|
3085
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
3086
|
+
}
|
|
3087
|
+
],
|
|
3088
|
+
"properties": [
|
|
3089
|
+
{
|
|
3090
|
+
"name": "cdx:npm:package:path",
|
|
3091
|
+
"value": "node_modules/ecdsa-sig-formatter"
|
|
3092
|
+
}
|
|
3093
|
+
]
|
|
3094
|
+
}
|
|
3095
|
+
],
|
|
124
3096
|
"dependencies": [
|
|
125
3097
|
{
|
|
126
|
-
"ref": "beth-copilot@1.0.
|
|
3098
|
+
"ref": "beth-copilot@1.0.16",
|
|
3099
|
+
"dependsOn": [
|
|
3100
|
+
"beth-copilot@1.0.16|@azure/identity@4.13.0",
|
|
3101
|
+
"beth-copilot@1.0.16|@types/node@20.19.33",
|
|
3102
|
+
"beth-copilot@1.0.16|gray-matter@4.0.3",
|
|
3103
|
+
"beth-copilot@1.0.16|openai@6.22.0",
|
|
3104
|
+
"beth-copilot@1.0.16|typescript@5.9.3"
|
|
3105
|
+
]
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"ref": "beth-copilot@1.0.16|@azure/identity@4.13.0",
|
|
3109
|
+
"dependsOn": [
|
|
3110
|
+
"beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3111
|
+
"beth-copilot@1.0.16|@azure/core-auth@1.10.1",
|
|
3112
|
+
"beth-copilot@1.0.16|@azure/core-client@1.10.1",
|
|
3113
|
+
"beth-copilot@1.0.16|@azure/core-rest-pipeline@1.22.2",
|
|
3114
|
+
"beth-copilot@1.0.16|@azure/core-tracing@1.3.1",
|
|
3115
|
+
"beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
3116
|
+
"beth-copilot@1.0.16|@azure/logger@1.3.0",
|
|
3117
|
+
"beth-copilot@1.0.16|@azure/msal-browser@4.28.2",
|
|
3118
|
+
"beth-copilot@1.0.16|@azure/msal-node@3.8.7",
|
|
3119
|
+
"beth-copilot@1.0.16|open@10.2.0",
|
|
3120
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3121
|
+
]
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"ref": "beth-copilot@1.0.16|@types/node@20.19.33",
|
|
3125
|
+
"dependsOn": [
|
|
3126
|
+
"beth-copilot@1.0.16|undici-types@6.21.0"
|
|
3127
|
+
]
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
"ref": "beth-copilot@1.0.16|gray-matter@4.0.3",
|
|
3131
|
+
"dependsOn": [
|
|
3132
|
+
"beth-copilot@1.0.16|js-yaml@3.14.2",
|
|
3133
|
+
"beth-copilot@1.0.16|kind-of@6.0.3",
|
|
3134
|
+
"beth-copilot@1.0.16|section-matter@1.0.0",
|
|
3135
|
+
"beth-copilot@1.0.16|strip-bom-string@1.0.0"
|
|
3136
|
+
]
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
"ref": "beth-copilot@1.0.16|openai@6.22.0"
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
"ref": "beth-copilot@1.0.16|typescript@5.9.3"
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
"ref": "beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3146
|
+
"dependsOn": [
|
|
3147
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3148
|
+
]
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"ref": "beth-copilot@1.0.16|@azure/core-auth@1.10.1",
|
|
3152
|
+
"dependsOn": [
|
|
3153
|
+
"beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3154
|
+
"beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
3155
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3156
|
+
]
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
"ref": "beth-copilot@1.0.16|@azure/core-client@1.10.1",
|
|
3160
|
+
"dependsOn": [
|
|
3161
|
+
"beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3162
|
+
"beth-copilot@1.0.16|@azure/core-auth@1.10.1",
|
|
3163
|
+
"beth-copilot@1.0.16|@azure/core-rest-pipeline@1.22.2",
|
|
3164
|
+
"beth-copilot@1.0.16|@azure/core-tracing@1.3.1",
|
|
3165
|
+
"beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
3166
|
+
"beth-copilot@1.0.16|@azure/logger@1.3.0",
|
|
3167
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3168
|
+
]
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"ref": "beth-copilot@1.0.16|@azure/core-rest-pipeline@1.22.2",
|
|
3172
|
+
"dependsOn": [
|
|
3173
|
+
"beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3174
|
+
"beth-copilot@1.0.16|@azure/core-auth@1.10.1",
|
|
3175
|
+
"beth-copilot@1.0.16|@azure/core-tracing@1.3.1",
|
|
3176
|
+
"beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
3177
|
+
"beth-copilot@1.0.16|@azure/logger@1.3.0",
|
|
3178
|
+
"beth-copilot@1.0.16|@typespec/ts-http-runtime@0.3.3",
|
|
3179
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3180
|
+
]
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"ref": "beth-copilot@1.0.16|@azure/core-tracing@1.3.1",
|
|
3184
|
+
"dependsOn": [
|
|
3185
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3186
|
+
]
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"ref": "beth-copilot@1.0.16|@azure/core-util@1.13.1",
|
|
3190
|
+
"dependsOn": [
|
|
3191
|
+
"beth-copilot@1.0.16|@azure/abort-controller@2.1.2",
|
|
3192
|
+
"beth-copilot@1.0.16|@typespec/ts-http-runtime@0.3.3",
|
|
3193
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3194
|
+
]
|
|
3195
|
+
},
|
|
3196
|
+
{
|
|
3197
|
+
"ref": "beth-copilot@1.0.16|@azure/logger@1.3.0",
|
|
3198
|
+
"dependsOn": [
|
|
3199
|
+
"beth-copilot@1.0.16|@typespec/ts-http-runtime@0.3.3",
|
|
3200
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3201
|
+
]
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"ref": "beth-copilot@1.0.16|@azure/msal-browser@4.28.2",
|
|
3205
|
+
"dependsOn": [
|
|
3206
|
+
"beth-copilot@1.0.16|@azure/msal-common@15.14.2"
|
|
3207
|
+
]
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
"ref": "beth-copilot@1.0.16|@azure/msal-node@3.8.7",
|
|
3211
|
+
"dependsOn": [
|
|
3212
|
+
"beth-copilot@1.0.16|@azure/msal-common@15.14.2",
|
|
3213
|
+
"beth-copilot@1.0.16|jsonwebtoken@9.0.3",
|
|
3214
|
+
"beth-copilot@1.0.16|uuid@8.3.2"
|
|
3215
|
+
]
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"ref": "beth-copilot@1.0.16|open@10.2.0",
|
|
3219
|
+
"dependsOn": [
|
|
3220
|
+
"beth-copilot@1.0.16|default-browser@5.5.0",
|
|
3221
|
+
"beth-copilot@1.0.16|define-lazy-prop@3.0.0",
|
|
3222
|
+
"beth-copilot@1.0.16|is-inside-container@1.0.0",
|
|
3223
|
+
"beth-copilot@1.0.16|wsl-utils@0.1.0"
|
|
3224
|
+
]
|
|
3225
|
+
},
|
|
3226
|
+
{
|
|
3227
|
+
"ref": "beth-copilot@1.0.16|tslib@2.8.1"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"ref": "beth-copilot@1.0.16|undici-types@6.21.0"
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"ref": "beth-copilot@1.0.16|js-yaml@3.14.2",
|
|
3234
|
+
"dependsOn": [
|
|
3235
|
+
"beth-copilot@1.0.16|argparse@1.0.10",
|
|
3236
|
+
"beth-copilot@1.0.16|esprima@4.0.1"
|
|
3237
|
+
]
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"ref": "beth-copilot@1.0.16|kind-of@6.0.3"
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"ref": "beth-copilot@1.0.16|section-matter@1.0.0",
|
|
3244
|
+
"dependsOn": [
|
|
3245
|
+
"beth-copilot@1.0.16|extend-shallow@2.0.1",
|
|
3246
|
+
"beth-copilot@1.0.16|kind-of@6.0.3"
|
|
3247
|
+
]
|
|
3248
|
+
},
|
|
3249
|
+
{
|
|
3250
|
+
"ref": "beth-copilot@1.0.16|strip-bom-string@1.0.0"
|
|
3251
|
+
},
|
|
3252
|
+
{
|
|
3253
|
+
"ref": "beth-copilot@1.0.16|@typespec/ts-http-runtime@0.3.3",
|
|
3254
|
+
"dependsOn": [
|
|
3255
|
+
"beth-copilot@1.0.16|http-proxy-agent@7.0.2",
|
|
3256
|
+
"beth-copilot@1.0.16|https-proxy-agent@7.0.6",
|
|
3257
|
+
"beth-copilot@1.0.16|tslib@2.8.1"
|
|
3258
|
+
]
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"ref": "beth-copilot@1.0.16|@azure/msal-common@15.14.2"
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
"ref": "beth-copilot@1.0.16|jsonwebtoken@9.0.3",
|
|
3265
|
+
"dependsOn": [
|
|
3266
|
+
"beth-copilot@1.0.16|jws@4.0.1",
|
|
3267
|
+
"beth-copilot@1.0.16|lodash.includes@4.3.0",
|
|
3268
|
+
"beth-copilot@1.0.16|lodash.isboolean@3.0.3",
|
|
3269
|
+
"beth-copilot@1.0.16|lodash.isinteger@4.0.4",
|
|
3270
|
+
"beth-copilot@1.0.16|lodash.isnumber@3.0.3",
|
|
3271
|
+
"beth-copilot@1.0.16|lodash.isplainobject@4.0.6",
|
|
3272
|
+
"beth-copilot@1.0.16|lodash.isstring@4.0.1",
|
|
3273
|
+
"beth-copilot@1.0.16|lodash.once@4.1.1",
|
|
3274
|
+
"beth-copilot@1.0.16|ms@2.1.3",
|
|
3275
|
+
"beth-copilot@1.0.16|semver@7.7.4"
|
|
3276
|
+
]
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
"ref": "beth-copilot@1.0.16|uuid@8.3.2"
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
"ref": "beth-copilot@1.0.16|default-browser@5.5.0",
|
|
3283
|
+
"dependsOn": [
|
|
3284
|
+
"beth-copilot@1.0.16|bundle-name@4.1.0",
|
|
3285
|
+
"beth-copilot@1.0.16|default-browser-id@5.0.1"
|
|
3286
|
+
]
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"ref": "beth-copilot@1.0.16|define-lazy-prop@3.0.0"
|
|
3290
|
+
},
|
|
3291
|
+
{
|
|
3292
|
+
"ref": "beth-copilot@1.0.16|is-inside-container@1.0.0",
|
|
3293
|
+
"dependsOn": [
|
|
3294
|
+
"beth-copilot@1.0.16|is-docker@3.0.0"
|
|
3295
|
+
]
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
"ref": "beth-copilot@1.0.16|wsl-utils@0.1.0",
|
|
3299
|
+
"dependsOn": [
|
|
3300
|
+
"beth-copilot@1.0.16|is-wsl@3.1.1"
|
|
3301
|
+
]
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"ref": "beth-copilot@1.0.16|argparse@1.0.10",
|
|
3305
|
+
"dependsOn": [
|
|
3306
|
+
"beth-copilot@1.0.16|sprintf-js@1.0.3"
|
|
3307
|
+
]
|
|
3308
|
+
},
|
|
3309
|
+
{
|
|
3310
|
+
"ref": "beth-copilot@1.0.16|esprima@4.0.1"
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
"ref": "beth-copilot@1.0.16|extend-shallow@2.0.1",
|
|
3314
|
+
"dependsOn": [
|
|
3315
|
+
"beth-copilot@1.0.16|is-extendable@0.1.1"
|
|
3316
|
+
]
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"ref": "beth-copilot@1.0.16|http-proxy-agent@7.0.2",
|
|
3320
|
+
"dependsOn": [
|
|
3321
|
+
"beth-copilot@1.0.16|agent-base@7.1.4",
|
|
3322
|
+
"beth-copilot@1.0.16|debug@4.4.3"
|
|
3323
|
+
]
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"ref": "beth-copilot@1.0.16|https-proxy-agent@7.0.6",
|
|
3327
|
+
"dependsOn": [
|
|
3328
|
+
"beth-copilot@1.0.16|agent-base@7.1.4",
|
|
3329
|
+
"beth-copilot@1.0.16|debug@4.4.3"
|
|
3330
|
+
]
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"ref": "beth-copilot@1.0.16|jws@4.0.1",
|
|
3334
|
+
"dependsOn": [
|
|
3335
|
+
"beth-copilot@1.0.16|jwa@2.0.1",
|
|
3336
|
+
"beth-copilot@1.0.16|safe-buffer@5.2.1"
|
|
3337
|
+
]
|
|
3338
|
+
},
|
|
3339
|
+
{
|
|
3340
|
+
"ref": "beth-copilot@1.0.16|lodash.includes@4.3.0"
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"ref": "beth-copilot@1.0.16|lodash.isboolean@3.0.3"
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
"ref": "beth-copilot@1.0.16|lodash.isinteger@4.0.4"
|
|
3347
|
+
},
|
|
3348
|
+
{
|
|
3349
|
+
"ref": "beth-copilot@1.0.16|lodash.isnumber@3.0.3"
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
"ref": "beth-copilot@1.0.16|lodash.isplainobject@4.0.6"
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
"ref": "beth-copilot@1.0.16|lodash.isstring@4.0.1"
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
"ref": "beth-copilot@1.0.16|lodash.once@4.1.1"
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"ref": "beth-copilot@1.0.16|ms@2.1.3"
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
"ref": "beth-copilot@1.0.16|semver@7.7.4"
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"ref": "beth-copilot@1.0.16|bundle-name@4.1.0",
|
|
3368
|
+
"dependsOn": [
|
|
3369
|
+
"beth-copilot@1.0.16|run-applescript@7.1.0"
|
|
3370
|
+
]
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"ref": "beth-copilot@1.0.16|default-browser-id@5.0.1"
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
"ref": "beth-copilot@1.0.16|is-docker@3.0.0"
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"ref": "beth-copilot@1.0.16|is-wsl@3.1.1",
|
|
3380
|
+
"dependsOn": [
|
|
3381
|
+
"beth-copilot@1.0.16|is-inside-container@1.0.0"
|
|
3382
|
+
]
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
"ref": "beth-copilot@1.0.16|sprintf-js@1.0.3"
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"ref": "beth-copilot@1.0.16|is-extendable@0.1.1"
|
|
3389
|
+
},
|
|
3390
|
+
{
|
|
3391
|
+
"ref": "beth-copilot@1.0.16|agent-base@7.1.4"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"ref": "beth-copilot@1.0.16|debug@4.4.3",
|
|
3395
|
+
"dependsOn": [
|
|
3396
|
+
"beth-copilot@1.0.16|ms@2.1.3"
|
|
3397
|
+
]
|
|
3398
|
+
},
|
|
3399
|
+
{
|
|
3400
|
+
"ref": "beth-copilot@1.0.16|jwa@2.0.1",
|
|
3401
|
+
"dependsOn": [
|
|
3402
|
+
"beth-copilot@1.0.16|buffer-equal-constant-time@1.0.1",
|
|
3403
|
+
"beth-copilot@1.0.16|ecdsa-sig-formatter@1.0.11",
|
|
3404
|
+
"beth-copilot@1.0.16|safe-buffer@5.2.1"
|
|
3405
|
+
]
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"ref": "beth-copilot@1.0.16|safe-buffer@5.2.1"
|
|
3409
|
+
},
|
|
3410
|
+
{
|
|
3411
|
+
"ref": "beth-copilot@1.0.16|run-applescript@7.1.0"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"ref": "beth-copilot@1.0.16|buffer-equal-constant-time@1.0.1"
|
|
3415
|
+
},
|
|
3416
|
+
{
|
|
3417
|
+
"ref": "beth-copilot@1.0.16|ecdsa-sig-formatter@1.0.11",
|
|
3418
|
+
"dependsOn": [
|
|
3419
|
+
"beth-copilot@1.0.16|safe-buffer@5.2.1"
|
|
3420
|
+
]
|
|
127
3421
|
}
|
|
128
3422
|
]
|
|
129
3423
|
}
|