@blamejs/core 0.13.7 → 0.13.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,8 @@ upgrading across more than a few patches at a time.
8
8
 
9
9
  ## v0.13.x
10
10
 
11
+ - v0.13.8 (2026-05-26) — **In-memory archive extraction for read-only / serverless filesystems.** Archive readers gain an in-memory extraction path so an uploaded archive can be opened and its contents read without writing anything to disk — the case a read-only or ephemeral serverless filesystem requires. b.archive.read.zip(...).extractEntries() and b.archive.read.tar(...).extractEntries() are async generators that yield each regular file entry as { name, bytes, size }, applying the same bomb-policy caps, b.guardArchive metadata cascade (which refuses a Zip-Slip / traversal archive wholesale), and entry-type-policy refusals as the disk extract() — only the disk realpath agreement check is omitted, since nothing is written and the caller owns where the returned bytes land. Directory and link entries carry no content and are not yielded. The guard cascade is factored into one shared path so disk and in-memory extraction refuse identically. Also a documentation fix: b.archive.gz no longer claims a b.archive.zip().toGzip() convenience exists — a ZIP is already DEFLATE-compressed per entry, so gzip-wrapping it gains nothing; gzip the uncompressed tar stream (the canonical .tar.gz) instead. **Added:** *`extractEntries()` — in-memory archive extraction (ZIP + tar)* — `b.archive.read.zip(source).extractEntries(opts?)` and `b.archive.read.tar(source).extractEntries(opts?)` are async generators yielding `{ name, bytes, size }` per regular file entry, never touching disk — for serverless / read-only filesystems where the disk `extract({ destination })` path cannot run. Same bomb-policy, guard-archive cascade, and entry-type-policy refusals as disk extraction; the bytes are byte-identical to what `extract()` writes. **Fixed:** *Removed the inaccurate `b.archive.zip().toGzip()` doc claim* — The `b.archive.gz` documentation described a `b.archive.zip().toGzip()` convenience method that does not (and should not) exist: a ZIP is already DEFLATE-compressed per entry, so gzip-wrapping it would compress already-compressed data for no benefit. `b.archive.tar().toGzip()` (the real `.tar.gz`) is unchanged.
12
+
11
13
  - v0.13.7 (2026-05-26) — **Documentation accuracy — several primitives described shipped features as deferred.** A documentation sweep corrected primitive descriptions that still called features deferred after they shipped, so the wiki and inline docs now match the code. b.mdoc documents that device authentication (the ISO 18013-5 §9.1.3 signature variant, verifyDeviceAuth) is verified, not deferred — only the COSE_Mac0 device-auth variant remains refused. b.network.dns.dnssec documents that the root-to-zone chain walk against the IANA trust anchors (verifyChain) and NSEC / NSEC3 denial of existence (verifyDenial / nsec3Hash) ship, where the card previously said they were deferred. b.cose lists COSE_Mac0 and COSE_Encrypt0 among what it ships. The JMAP server documents its push channel, blob upload/download, and EmailSubmission handlers as present, and the submission server documents CHUNKING / BDAT as supported. A new test detector keeps this class of drift from recurring: it fails the build when a comment promises a feature lands in a version that has already shipped. **Fixed:** *Corrected `deferred`/`does-not-ship` docs for features that have shipped* — `b.mdoc` (device authentication, §9.1.3), `b.network.dns.dnssec` (chain walk + NSEC/NSEC3), `b.cose` (COSE_Mac0 + COSE_Encrypt0), the JMAP server (push, blob, EmailSubmission), and the submission server (BDAT/CHUNKING) all carried `@card`/`@intro` text describing shipped capabilities as deferred or not-shipped. The descriptions now match the implemented surface; genuinely-deferred items (the mdoc MAC variant, DNSSEC in-RDATA name canonicalization, COSE multi-signer/multi-recipient) remain documented as such. **Detectors:** *Overdue-defer detector in the codebase-pattern gate* — A new check fails the build when a comment promises a feature "lands in" / is "deferred to" / is "not supported in" a version that the package has already reached — catching stale deferral notes (a feature that shipped but whose comment still says otherwise, or a missed deadline) before they reach a release. An allowlist records the deliberate defer-with-condition exceptions.
12
14
 
13
15
  - v0.13.6 (2026-05-26) — **`b.ai.frontierModelProtocol` — California SB 53 frontier-AI obligations.** b.ai.frontierModelProtocol assesses a developer's obligations under California's Transparency in Frontier Artificial Intelligence Act — SB 53, Cal. Bus. & Prof. Code §22757.10, effective 2026-01-01 — from a model's training compute and the developer's revenue. It reports whether the model crosses the frontier threshold (more than 10^26 training FLOPs), whether the developer is a large frontier developer (prior-year revenue, with affiliates, above $500M), and the resulting obligations: every frontier developer must report critical safety incidents and publish a transparency report, and a large frontier developer must additionally publish an annual safety framework and disclose its catastrophic-risk assessment. Passing a candidate safety framework reports which required elements (risk identification, mitigation, governance, cybersecurity, standards alignment) are missing. b.ai.frontierModelProtocol.incidentReport validates a critical-incident type against the Act's four categories and computes the notification deadline to the California Office of Emergency Services — 15 days from discovery, or 24 hours when there is an imminent risk of death or serious physical injury. The ca-tfaia compliance posture was already in the catalog. **Added:** *`b.ai.frontierModelProtocol` — SB 53 threshold classification, obligations, and incident reporting* — `b.ai.frontierModelProtocol({ trainingFlops, annualRevenueUsd, framework? })` returns `isFrontierModel`, `isLargeFrontierDeveloper`, the `obligations` list, and (when a framework is supplied) its `frameworkGaps`. `b.ai.frontierModelProtocol.incidentReport({ type, discoveredAt, imminentRiskToLife? })` builds a critical-safety-incident report with the California OES recipient and a `dueAt` / `deadlineHours` computed from the 15-day (or 24-hour imminent-risk) statutory window; `type` must be one of the four categories in `INCIDENT_TYPES`. Throws `FrontierProtocolError` on malformed input.
package/README.md CHANGED
@@ -228,7 +228,7 @@ The framework bundles the surface a typical Node app reaches for. Every primitiv
228
228
  - **i18n** — CLDR plural rules, Accept-Language negotiation, Intl formatters, RTL (`b.i18n`)
229
229
  - **CSV** — RFC 4180 with Excel formula-injection prevention (`b.csv`)
230
230
  - **IDs + slugs** — RFC 9562 UUID v4 + v7 (`b.uuid`); URL-safe slugs (`b.slug`)
231
- - **Time + archive** — TZ-aware datetime (`b.time`); ZIP creation + adversarial-safe read with bomb caps + path-traversal + LFH/CD-skew defense (`b.archive` + `b.archive.read.zip`); one-liner quarantine extraction (`b.safeArchive.extract`); fs / objectStore / http / buffer / trusted-stream adapter contract (`b.archive.adapters`)
231
+ - **Time + archive** — TZ-aware datetime (`b.time`); ZIP creation + adversarial-safe read with bomb caps + path-traversal + LFH/CD-skew defense (`b.archive` + `b.archive.read.zip`); one-liner quarantine extraction (`b.safeArchive.extract`); in-memory extraction with no disk write for read-only / serverless filesystems (`b.archive.read.zip(...).extractEntries()` / `.tar`); fs / objectStore / http / buffer / trusted-stream adapter contract (`b.archive.adapters`)
232
232
  - **Pagination + forms** — HMAC-signed cursor pagination (`b.pagination`); HTML form rendering + validation + CSRF (`b.forms`)
233
233
 
234
234
  ### Production
package/lib/archive-gz.js CHANGED
@@ -47,9 +47,11 @@ function _isGzipMagic(buf) {
47
47
  * `toAdapter(adapter)` / `digest()` — so gzip slots into the same
48
48
  * downstream sinks (object-store + filesystem + http adapters).
49
49
  *
50
- * Composes `b.archive.tar().toGzip(adapter)` / `b.archive.zip().
51
- * toGzip(adapter)` indirectly: those convenience methods call this
52
- * primitive after materializing their archive bytes.
50
+ * `b.archive.tar().toGzip(adapter)` composes this primitive after
51
+ * materializing the tar bytes (the canonical `.tar.gz`). There is no
52
+ * `zip().toGzip()` a ZIP is already DEFLATE-compressed per entry, so
53
+ * gzip-wrapping it would compress already-compressed data for no gain;
54
+ * gzip the uncompressed tar stream instead.
53
55
  *
54
56
  * @opts
55
57
  * level: number, // 0-9, default 6 (zlib default).
@@ -546,21 +546,13 @@ function zip(adapter, opts) {
546
546
  }
547
547
  }
548
548
 
549
- async function extract(extractOpts) {
550
- extractOpts = extractOpts || {};
551
- if (typeof extractOpts.destination !== "string" || extractOpts.destination.length === 0) {
552
- throw new ArchiveReadError("archive-read/no-destination",
553
- "extract: opts.destination must be a non-empty string (target directory)");
554
- }
555
- var destination = nodePath.resolve(extractOpts.destination);
556
- if (!nodeFs.existsSync(destination)) {
557
- nodeFs.mkdirSync(destination, { recursive: true });
558
- }
559
- var loaded = await _loadCD();
560
- _enforceBombPolicy(loaded.entries, bombPolicy);
561
- // Compose b.guardArchive on the metadata pass — operators with a
562
- // posture set declared via opts.guardProfile get the cascade.
563
- var guardEntries = loaded.entries.map(function (e) {
549
+ // Run the b.guardArchive metadata cascade and refuse the whole archive on
550
+ // any critical issue. Shared by disk `extract` and in-memory `extractEntries`
551
+ // so both apply the identical posture-aware refusal. `auditAction` names the
552
+ // audit row for the refusal path.
553
+ function _assertGuardMetadata(loadedEntries, auditAction) {
554
+ if (opts.guardProfile === false) return;
555
+ var guardEntries = loadedEntries.map(function (e) {
564
556
  return {
565
557
  name: e.name,
566
558
  size: e.uncompressedSize,
@@ -573,24 +565,80 @@ function zip(adapter, opts) {
573
565
  attrs: { externalAttrs: e.externalAttrs },
574
566
  };
575
567
  });
576
- if (opts.guardProfile !== false) {
577
- var profile = opts.guardProfile || "balanced";
578
- var guardResult = guardArchive().validateEntries(guardEntries, { profile: profile });
579
- if (guardResult && Array.isArray(guardResult.issues) && guardResult.issues.length > 0) {
580
- // Refuse the whole archive when any entry trips a critical
581
- // guard issue; collect every issue for the audit trail.
582
- var critical = guardResult.issues.filter(function (i) { return i.severity === "critical"; });
583
- if (critical.length > 0) {
584
- _emitAudit(opts, "archive.read.extract.refused", "refused", {
585
- entries: loaded.entries.length,
586
- issues: critical.map(function (i) { return i.ruleId; }),
587
- });
588
- throw new ArchiveReadError("archive-read/guard-refused",
589
- "extract refused — " + critical.length + " critical guard issue(s): " +
590
- critical.map(function (i) { return i.ruleId + " (" + i.snippet + ")"; }).join("; "));
591
- }
568
+ var profile = opts.guardProfile || "balanced";
569
+ var guardResult = guardArchive().validateEntries(guardEntries, { profile: profile });
570
+ if (!guardResult || !Array.isArray(guardResult.issues) || guardResult.issues.length === 0) return;
571
+ var critical = guardResult.issues.filter(function (i) { return i.severity === "critical"; });
572
+ if (critical.length === 0) return;
573
+ _emitAudit(opts, auditAction, "refused", {
574
+ entries: loadedEntries.length,
575
+ issues: critical.map(function (i) { return i.ruleId; }),
576
+ });
577
+ throw new ArchiveReadError("archive-read/guard-refused",
578
+ "extract refused — " + critical.length + " critical guard issue(s): " +
579
+ critical.map(function (i) { return i.ruleId + " (" + i.snippet + ")"; }).join("; "));
580
+ }
581
+
582
+ // In-memory extraction: yields each file entry's decompressed bytes WITHOUT
583
+ // writing to disk — for read-only / serverless filesystems. Applies the same
584
+ // bomb-policy, guard cascade, entry-type policy, and per-entry filename
585
+ // safety as `extract`; directory entries are skipped (no bytes). The realpath
586
+ // agreement check is disk-specific and intentionally omitted (no extraction
587
+ // root); the caller owns where, if anywhere, the bytes land.
588
+ async function* extractEntries(extractOpts) {
589
+ extractOpts = extractOpts || {};
590
+ var loaded = await _loadCD();
591
+ _enforceBombPolicy(loaded.entries, bombPolicy);
592
+ _assertGuardMetadata(loaded.entries, "archive.read.extractEntries.refused");
593
+ var totalDecompressed = 0;
594
+ var yielded = 0;
595
+ for (var i = 0; i < loaded.entries.length; i += 1) {
596
+ var entry = loaded.entries[i];
597
+ if (entry.isEncrypted && !extractOpts.allowEncrypted) {
598
+ throw new ArchiveReadError("archive-read/encrypted-entry",
599
+ "entry " + JSON.stringify(entry.name) + " is encrypted — not decrypted on the in-memory path");
600
+ }
601
+ var typeRefusal = _enforceEntryTypePolicy(entry, entryTypePolicy);
602
+ if (typeRefusal) {
603
+ throw new ArchiveReadError("archive-read/entry-type-refused",
604
+ "entry " + JSON.stringify(entry.name) + " is a " + typeRefusal +
605
+ " — refused by entryTypePolicy");
606
+ }
607
+ if (_isDirectoryEntry(entry.name, entry.externalAttrs)) continue;
608
+ // Archive-level name threats (Zip-Slip traversal, etc.) are refused for
609
+ // the whole archive by the guardArchive cascade above. The caller owns
610
+ // final placement of the returned bytes; we deliberately do NOT apply the
611
+ // disk-write filename policy (shell-exec extensions / reserved names) here
612
+ // — nothing is written, and over-filtering would drop legitimate names.
613
+ var lfhResult = await _verifyLfhMatchesCd(adapter, entry);
614
+ var body = await _decompressEntry(adapter, entry, lfhResult.dataStart, bombPolicy);
615
+ totalDecompressed += body.length;
616
+ if (totalDecompressed > bombPolicy.maxTotalDecompressedBytes) {
617
+ throw new ArchiveReadError("archive-read/total-too-large",
618
+ "cumulative uncompressed=" + totalDecompressed +
619
+ " exceeds maxTotalDecompressedBytes during extractEntries");
592
620
  }
621
+ yielded += 1;
622
+ yield { name: entry.name, bytes: body, size: body.length };
623
+ }
624
+ _emitAudit(opts, "archive.read.extractEntries.completed", "success", { entries: yielded });
625
+ }
626
+
627
+ async function extract(extractOpts) {
628
+ extractOpts = extractOpts || {};
629
+ if (typeof extractOpts.destination !== "string" || extractOpts.destination.length === 0) {
630
+ throw new ArchiveReadError("archive-read/no-destination",
631
+ "extract: opts.destination must be a non-empty string (target directory)");
593
632
  }
633
+ var destination = nodePath.resolve(extractOpts.destination);
634
+ if (!nodeFs.existsSync(destination)) {
635
+ nodeFs.mkdirSync(destination, { recursive: true });
636
+ }
637
+ var loaded = await _loadCD();
638
+ _enforceBombPolicy(loaded.entries, bombPolicy);
639
+ // Compose b.guardArchive on the metadata pass — operators with a
640
+ // posture set declared via opts.guardProfile get the cascade.
641
+ _assertGuardMetadata(loaded.entries, "archive.read.extract.refused");
594
642
  var written = [];
595
643
  var bytesExtracted = 0;
596
644
  var totalDecompressed = 0;
@@ -693,10 +741,11 @@ function zip(adapter, opts) {
693
741
  }
694
742
 
695
743
  return {
696
- kind: "zip-random-access",
697
- inspect: inspect,
698
- entries: entries,
699
- extract: extract,
744
+ kind: "zip-random-access",
745
+ inspect: inspect,
746
+ entries: entries,
747
+ extract: extract,
748
+ extractEntries: extractEntries,
700
749
  };
701
750
  }
702
751
 
@@ -276,6 +276,87 @@ function tar(adapter, opts) {
276
276
  });
277
277
  }
278
278
 
279
+ // Shared b.guardArchive metadata cascade — disk `extract` + in-memory
280
+ // `extractEntries` refuse the whole archive identically on a critical issue.
281
+ function _assertGuardMetadata(entries, auditAction) {
282
+ if (opts.guardProfile === false) return;
283
+ var profile = opts.guardProfile || "balanced";
284
+ var guardEntries = entries.map(function (e) {
285
+ return {
286
+ name: e.name,
287
+ size: e.size,
288
+ compressedSize: e.size,
289
+ isSymlink: e.typeflag === TF_SYMLINK,
290
+ isHardlink: e.typeflag === TF_HARDLINK,
291
+ linkTarget: e.linkname,
292
+ isDirectory: e.typeflag === TF_DIRECTORY,
293
+ isEncrypted: false,
294
+ attrs: { mode: e.mode },
295
+ };
296
+ });
297
+ var guardResult = guardArchive().validateEntries(guardEntries, { profile: profile });
298
+ if (!guardResult || !Array.isArray(guardResult.issues)) return;
299
+ var critical = guardResult.issues.filter(function (i) { return i.severity === "critical"; });
300
+ if (critical.length === 0) return;
301
+ _emitAudit(opts, auditAction, "refused", {
302
+ entries: entries.length,
303
+ issues: critical.map(function (i) { return i.ruleId; }),
304
+ });
305
+ throw new TarError("archive-tar/guard-refused",
306
+ "extract refused — " + critical.length + " critical guard issue(s)");
307
+ }
308
+
309
+ // In-memory extraction: yields each regular file entry's bytes without
310
+ // writing to disk (read-only / serverless filesystems). Same guard cascade,
311
+ // type-policy refusals, filename safety, and bomb cap as `extract`; directory
312
+ // and (validated) link entries carry no content and are not yielded.
313
+ async function* extractEntries(extractOpts) {
314
+ extractOpts = extractOpts || {};
315
+ var allowDangerous = extractOpts.allowDangerous || {};
316
+ var walked = await _walk();
317
+ var entries = walked.entries;
318
+ var bytes = walked.bytes;
319
+ _assertGuardMetadata(entries, "archive.read.tar.extractEntries.refused");
320
+ var totalDecompressed = 0;
321
+ var yielded = 0;
322
+ for (var i = 0; i < entries.length; i += 1) {
323
+ var entry = entries[i];
324
+ var type = _classifyTypeflag(entry.typeflag);
325
+ if (type === "device" || type === "fifo" || type === "socket") {
326
+ throw new TarError("archive-tar/entry-type-refused",
327
+ "entry " + JSON.stringify(entry.name) + " is a " + type + " — refused unconditionally");
328
+ }
329
+ if (type === "symlink" && !(allowDangerous.symlinks || entryTypePolicy.symlinks)) {
330
+ throw new TarError("archive-tar/entry-type-refused",
331
+ "entry " + JSON.stringify(entry.name) + " is a symlink — refused by entryTypePolicy");
332
+ }
333
+ if (type === "hardlink" && !(allowDangerous.hardlinks || entryTypePolicy.hardlinks)) {
334
+ throw new TarError("archive-tar/entry-type-refused",
335
+ "entry " + JSON.stringify(entry.name) + " is a hardlink — refused by entryTypePolicy");
336
+ }
337
+ // Directories + (now-permitted) links carry no content bytes.
338
+ if (type === "directory" || type === "symlink" || type === "hardlink") continue;
339
+ // Archive-level name threats are refused by the guardArchive cascade
340
+ // above; the caller owns placement of the returned bytes, so the
341
+ // disk-write filename policy is intentionally not applied here.
342
+ // COPY the slice — bytes.subarray/slice shares the full collected-archive
343
+ // backing store, so a caller retaining one entry would pin the whole
344
+ // archive in memory, defeating the serverless memory goal. Buffer.from
345
+ // gives the entry its own backing store (matching the ZIP path, whose
346
+ // _decompressEntry already returns a fresh buffer).
347
+ var body = Buffer.from(bytes.subarray(entry._bodyStart, entry._bodyStart + entry.size));
348
+ totalDecompressed += body.length;
349
+ if (totalDecompressed > bombPolicy.maxTotalDecompressedBytes) {
350
+ throw new TarError("archive-tar/total-too-large",
351
+ "cumulative uncompressed=" + totalDecompressed +
352
+ " exceeds maxTotalDecompressedBytes during extractEntries");
353
+ }
354
+ yielded += 1;
355
+ yield { name: entry.name, bytes: body, size: body.length };
356
+ }
357
+ _emitAudit(opts, "archive.read.tar.extractEntries.completed", "success", { entries: yielded });
358
+ }
359
+
279
360
  async function extract(extractOpts) {
280
361
  extractOpts = extractOpts || {};
281
362
  if (typeof extractOpts.destination !== "string" || extractOpts.destination.length === 0) {
@@ -290,34 +371,7 @@ function tar(adapter, opts) {
290
371
  var walked = await _walk();
291
372
  var entries = walked.entries;
292
373
  var bytes = walked.bytes;
293
- if (opts.guardProfile !== false) {
294
- var profile = opts.guardProfile || "balanced";
295
- var guardEntries = entries.map(function (e) {
296
- return {
297
- name: e.name,
298
- size: e.size,
299
- compressedSize: e.size,
300
- isSymlink: e.typeflag === TF_SYMLINK,
301
- isHardlink: e.typeflag === TF_HARDLINK,
302
- linkTarget: e.linkname,
303
- isDirectory: e.typeflag === TF_DIRECTORY,
304
- isEncrypted: false,
305
- attrs: { mode: e.mode },
306
- };
307
- });
308
- var guardResult = guardArchive().validateEntries(guardEntries, { profile: profile });
309
- if (guardResult && Array.isArray(guardResult.issues)) {
310
- var critical = guardResult.issues.filter(function (i) { return i.severity === "critical"; });
311
- if (critical.length > 0) {
312
- _emitAudit(opts, "archive.read.tar.extract.refused", "refused", {
313
- entries: entries.length,
314
- issues: critical.map(function (i) { return i.ruleId; }),
315
- });
316
- throw new TarError("archive-tar/guard-refused",
317
- "extract refused — " + critical.length + " critical guard issue(s)");
318
- }
319
- }
320
- }
374
+ _assertGuardMetadata(entries, "archive.read.tar.extract.refused");
321
375
  var written = [];
322
376
  var bytesExtracted = 0;
323
377
  var totalDecompressed = 0;
@@ -405,9 +459,10 @@ function tar(adapter, opts) {
405
459
  }
406
460
 
407
461
  return {
408
- kind: "tar-reader",
409
- inspect: inspect,
410
- extract: extract,
462
+ kind: "tar-reader",
463
+ inspect: inspect,
464
+ extract: extract,
465
+ extractEntries: extractEntries,
411
466
  };
412
467
  }
413
468
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/core",
3
- "version": "0.13.7",
3
+ "version": "0.13.8",
4
4
  "description": "The Node framework that owns its stack.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "blamejs contributors",
package/sbom.cdx.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
3
3
  "bomFormat": "CycloneDX",
4
4
  "specVersion": "1.5",
5
- "serialNumber": "urn:uuid:22a52afe-2217-4e18-a7a1-15e6a137ec0c",
5
+ "serialNumber": "urn:uuid:fd9a8f72-de3b-4a8d-8059-9ff47ccebb1b",
6
6
  "version": 1,
7
7
  "metadata": {
8
- "timestamp": "2026-05-27T04:39:38.785Z",
8
+ "timestamp": "2026-05-27T05:52:19.814Z",
9
9
  "lifecycles": [
10
10
  {
11
11
  "phase": "build"
@@ -19,14 +19,14 @@
19
19
  }
20
20
  ],
21
21
  "component": {
22
- "bom-ref": "@blamejs/core@0.13.7",
22
+ "bom-ref": "@blamejs/core@0.13.8",
23
23
  "type": "application",
24
24
  "name": "blamejs",
25
- "version": "0.13.7",
25
+ "version": "0.13.8",
26
26
  "scope": "required",
27
27
  "author": "blamejs contributors",
28
28
  "description": "The Node framework that owns its stack.",
29
- "purl": "pkg:npm/%40blamejs/core@0.13.7",
29
+ "purl": "pkg:npm/%40blamejs/core@0.13.8",
30
30
  "properties": [],
31
31
  "externalReferences": [
32
32
  {
@@ -54,7 +54,7 @@
54
54
  "components": [],
55
55
  "dependencies": [
56
56
  {
57
- "ref": "@blamejs/core@0.13.7",
57
+ "ref": "@blamejs/core@0.13.8",
58
58
  "dependsOn": []
59
59
  }
60
60
  ]