@blamejs/core 0.15.61 → 0.15.63
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 +4 -0
- package/lib/auth/oid4vci.js +56 -17
- package/lib/mail-arc-sign.js +1 -1
- package/lib/mail-auth.js +35 -14
- package/lib/mail-dkim.js +1 -0
- package/package.json +1 -1
- package/sbom.cdx.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ upgrading across more than a few patches at a time.
|
|
|
8
8
|
|
|
9
9
|
## v0.15.x
|
|
10
10
|
|
|
11
|
+
- v0.15.63 (2026-06-29) — **OID4VCI now enforces single-use of a pre-authorized code and of a single-use access token under concurrency, so two simultaneous requests can no longer mint two credentials from one.** On the OID4VCI credential issuer, two single-use values were consumed by a delete whose result was ignored, so concurrent requests could each act on the same value. exchangePreAuthorizedCode read the pre-authorized code's entry, validated the transaction code, then deleted the code and minted an access token without checking that its own call had removed the entry — two simultaneous /token requests with the same code each saw the entry, each deleted it, and each minted a distinct access token, issuing two access tokens (and ultimately two credentials) from a code OID4VCI requires to be single-use. issueCredential had the same shape: with single-use access tokens (the default), it minted the credential first and deleted the access token afterward as best-effort cleanup, so two concurrent requests bearing the same token both read it and the same not-yet-rotated c_nonce, both proofs verified, and both minted a credential. Both paths now claim the value with an atomic delete and proceed only when that delete succeeded; the losing request is refused. The transaction-code and proof checks still run first, so a bad transaction code or proof does not consume the value (a wallet can retry). **Security:** *OID4VCI pre-authorized code and access token are single-use under concurrency* — exchangePreAuthorizedCode and issueCredential consumed their single-use value (the pre-authorized code, and the single-use access token) with a delete whose return was discarded, and in issueCredential's case after the credential was already minted. Two concurrent requests carrying the same value therefore each succeeded — minting two access tokens from one pre-authorized code, or two credentials from one single-use access token — defeating the single-use guarantee OID4VCI §3.5 requires (an authorization intended for one credential could yield two). Both paths now delete the value atomically and issue only if that delete removed it, refusing the request that lost the race; the transaction-code and proof verifications run before the claim, so an invalid attempt does not burn the value. If the operator's credential issuer throws after the access token has been claimed (a transient signer outage), the token is restored so the wallet can retry rather than being permanently consumed without a credential.
|
|
12
|
+
|
|
13
|
+
- v0.15.62 (2026-06-29) — **ARC evaluation now reads each hop's instance with the same strict parser the signature checks use, so a crafted ARC-Authentication-Results header can no longer forge the upstream auth-results surfaced to downstream policy.** b.mail.arc.evaluate returns finalAr — the most recent hop's ARC-Authentication-Results, the receiver's view of the upstream authentication results — which operators may key downstream decisions on. The instance tag (i=) on each ARC header was parsed by three different regexes: the indexing pass that drives the AMS/AS signature checks required i= with no surrounding space and at most three digits, while the finalAr extraction and the AMS header-retention test accepted a looser form (a space around =, unbounded digits). When a sealer signs without covering ARC-Authentication-Results in its AMS h= (permitted by RFC 8617 and supported by the verifier), an attacker holding no key could append a second ARC-Authentication-Results written so the strict pass ignored it while the loose pass consumed it — forging finalAr on a chain that still verified as pass. All ARC instance reads now route through one strict parser, so the evaluation surfaces the same hop the signatures validated. The release also repairs the b.mail.arc.sign excludeAarFromAms option (it was read but rejected by option validation, so the documented opt-out was unreachable) and routes the ARC-Seal signature's b= stripping through the shared tag-aware helper. **Fixed:** *ARC finalAr is read from the strictly-indexed hop, not a looser rescan* — b.mail.arc.evaluate extracted finalAr (and validated the per-hop AMS header retention) with a regex that accepted ARC instance tags the signature-indexing pass rejected — a space around i= or more than three digits. A sealer that omits ARC-Authentication-Results from its AMS h= leaves the AAR outside signature coverage; an attacker could then inject a second ARC-Authentication-Results whose instance the strict crypto pass skipped but the finalAr pass accepted, presenting attacker-chosen upstream auth-results on a chain that still reported pass. Every ARC instance read now goes through a single strict parser, so finalAr is always the AAR the chain's signatures actually covered. · *b.mail.arc.sign accepts excludeAarFromAms again* — The excludeAarFromAms option was read when building the AMS h= list but was missing from the function's option allow-list, so passing it raised an unknown-option error — the documented opt-out could not be used. It is now accepted. · *ARC-Seal b= stripping uses the shared tag-aware helper* — The ARC-Seal verification stripped the signature's b= value with a regex that could mis-zero a value containing b= inside another tag; it now uses the same tag-aware stripper as DKIM, so canonicalization matches the signer in every case. **Detectors:** *ARC instance parsing must use the shared strict reader* — A check fails the build if any ARC instance (i=) parsing regex is added outside the single shared reader, preventing a future divergence between the signature-indexing pass and the finalAr / header-retention passes.
|
|
14
|
+
|
|
11
15
|
- v0.15.61 (2026-06-29) — **The local and Redis job queues fence completion, failure, and lease extension on the lease the caller actually holds, so a worker finishing after its lease expired can no longer disturb a job another worker has since taken over.** On the local and Redis queue backends, complete(), fail(), and extendLease() identified a job only by its id. When a worker's lease expired, the sweep returned the job to the ready set and another worker leased and began running it; if the original worker then finished late, its complete() could mark the new worker's in-progress job done (and double-fire a cron repeat or re-release flow children), and its fail() could re-queue or dead-letter a job the new worker was still executing. Each lease now carries the job's attempts value (incremented once per lease), and complete(), fail(), and extendLease() act only when that value still matches — so a call from a worker that no longer holds the lease changes nothing. The generic consumer threads this automatically; the SQS backend already bound these actions to the message's receipt handle and is unchanged. **Fixed:** *Local and Redis queues bind complete/fail/extendLease to the held lease* — A long-running handler whose lease expired and was swept could have its job re-leased to a second worker; when the first worker finished, complete() marked the second worker's in-progress job done — double-firing a cron-recurring job's next enqueue and re-releasing its flow dependents — while fail() re-queued or dead-lettered the job the second worker was still running (re-executing or discarding in-flight work). The backends now fence each of these calls on the leased attempts value, which is bumped once per lease; only the worker that holds the current lease can complete, fail, or extend it. A stale call returns without mutating the queue. This brings the local and Redis backends to parity with the SQS backend, which already bound these actions to the message receipt handle.
|
|
12
16
|
|
|
13
17
|
- v0.15.60 (2026-06-29) — **`requireStepUp` binds the elevation grant to the authenticated principal, refusing a grant minted for a different user (cross-user step-up replay).** The b.middleware.requireStepUp gate accepts an operator-issued step-up elevation grant from the X-Step-Up-Grant header and verifies it with b.auth.stepUp.grant.verify. An elevation grant carries the subject it was minted for (payload.sub), but the middleware verified only the grant's signature, expiry, and scope — never that the grant's subject matched the request's authenticated principal. A grant minted for one user (and then leaked through a shared cache, a log line, a referrer, or a shared device) therefore satisfied the step-up requirement for ANY other authenticated user who presented it, elevating their session to the granted assurance level without ever completing a step-up ceremony. requireStepUp now passes the resolved principal as the grant's required subject, so the grant satisfies step-up only for the user it was issued to. The principal is resolved from whichever shape the authenticator populated — a session's req.user.id / req.user.userId, or the JWT subject (req.user.claims.sub / req.user.sub) set by bearerAuth with an external verifier — so a grant legitimately minted for a JWT subject still binds. A request with no resolvable principal cannot bind the grant and falls through to the claims-based challenge. **Security:** *Step-up elevation grants are bound to the authenticated principal* — requireStepUp's grant path called b.auth.stepUp.grant.verify with only the grant scope, not the subject, so any holder of a valid, unexpired, scope-matching elevation grant passed the step-up gate regardless of which user the request was authenticated as — a leaked or shared grant elevated a different user's session (cross-user step-up replay). The grant already binds a subject at mint time and the verifier supports a subject check; the middleware now supplies the request's principal as the required subject, refusing a grant whose subject does not match. The principal is read from whichever field the authenticator set — a session's id/userId or the JWT subject (claims.sub / sub) from bearerAuth's external verifier — so a grant minted for any of those binds correctly. A request with no authenticated principal cannot bind a grant and is handled by the normal claims-based step-up challenge. The grant verifier's signature/expiry/scope/jti-revocation checks are unchanged.
|
package/lib/auth/oid4vci.js
CHANGED
|
@@ -665,7 +665,21 @@ function create(opts) {
|
|
|
665
665
|
"exchangePreAuthorizedCode: tx_code does not match");
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
|
-
|
|
668
|
+
// Single-use enforcement under concurrency: claim the code by deleting it
|
|
669
|
+
// and gate issuance on having WON that delete. codeStore.del returns true
|
|
670
|
+
// only for the caller that removed the entry (a single DELETE ... WHERE /
|
|
671
|
+
// redis DEL is atomic — exactly one of two racing redemptions gets a true
|
|
672
|
+
// return, the other false). Without gating on the return, two concurrent
|
|
673
|
+
// /token requests with the same pre-authorized_code (and matching tx_code)
|
|
674
|
+
// both read the entry, both delete, and both mint an access token — issuing
|
|
675
|
+
// two credentials from a code RFC OID4VCI §3.5 mandates be single-use. The
|
|
676
|
+
// tx_code check above runs first and throws without consuming, so a wrong
|
|
677
|
+
// tx_code does not burn the code (a retrying wallet is unaffected).
|
|
678
|
+
var claimed = await codeStore.del(eopts.preAuthCode);
|
|
679
|
+
if (!claimed) {
|
|
680
|
+
throw new AuthError("auth-oid4vci/invalid-pre-auth-code",
|
|
681
|
+
"exchangePreAuthorizedCode: pre-authorized_code already redeemed");
|
|
682
|
+
}
|
|
669
683
|
var accessToken = generateToken(32); // 256-bit access token
|
|
670
684
|
var cNonce = generateToken(16); // 128-bit c_nonce
|
|
671
685
|
var record = {
|
|
@@ -760,30 +774,55 @@ function create(opts) {
|
|
|
760
774
|
throw new AuthError("auth-oid4vci/no-claims",
|
|
761
775
|
"issueCredential: claims required (operator looks up the subject's data and supplies them)");
|
|
762
776
|
}
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
777
|
+
// Single-use access token: CLAIM it (atomic, gated delete) BEFORE minting,
|
|
778
|
+
// so two concurrent issueCredential calls bearing the same token can't both
|
|
779
|
+
// produce a credential. atStore.del returns true only for the caller that
|
|
780
|
+
// removed the entry; the loser is refused. The proof and claims checks above
|
|
781
|
+
// run first, so a bad proof does not burn the token (a wallet can retry).
|
|
782
|
+
// Done before the mint because deleting it only as post-mint cleanup let two
|
|
783
|
+
// racing requests both read the token and both mint (re-minting from a
|
|
784
|
+
// single-use token). c_nonce rotation alone does not stop this — both
|
|
785
|
+
// requests read the same un-rotated c_nonce.
|
|
786
|
+
if (accessTokenSingleUse) {
|
|
787
|
+
var atClaimed = await atStore.del(iopts.accessToken);
|
|
788
|
+
if (!atClaimed) {
|
|
789
|
+
throw new AuthError("auth-oid4vci/access-token-consumed",
|
|
790
|
+
"issueCredential: access token already used (single-use)");
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
var sdJwtToken;
|
|
794
|
+
try {
|
|
795
|
+
sdJwtToken = await opts.sdJwtIssuer.issue({
|
|
796
|
+
vct: spec.vct,
|
|
797
|
+
subject: record.subject,
|
|
798
|
+
claims: iopts.claims,
|
|
799
|
+
selectivelyDisclosed: iopts.selectivelyDisclosed || Object.keys(iopts.claims),
|
|
800
|
+
holderKey: verified.jwk,
|
|
801
|
+
ttlMs: iopts.ttlMs,
|
|
802
|
+
});
|
|
803
|
+
} catch (e) {
|
|
804
|
+
// Issuance failed AFTER the single-use access token was claimed (the
|
|
805
|
+
// operator's issuer threw — a transient signer/KMS outage or a validation
|
|
806
|
+
// error). Restore the token so the wallet can retry: the claim exists
|
|
807
|
+
// only to stop a concurrent double-mint, not to burn the token when no
|
|
808
|
+
// credential was returned. The next attempt re-claims atomically, so this
|
|
809
|
+
// opens no double-mint window.
|
|
810
|
+
if (accessTokenSingleUse) {
|
|
811
|
+
try { await atStore.set(iopts.accessToken, record); } catch (_e) { /* best-effort restore */ }
|
|
812
|
+
}
|
|
813
|
+
throw e;
|
|
814
|
+
}
|
|
771
815
|
|
|
772
816
|
// Rotate c_nonce so a replayed proof-JWT for a follow-up
|
|
773
817
|
// batch_credential request is rejected.
|
|
774
818
|
var newCNonce = generateToken(16); // 128-bit c_nonce
|
|
775
819
|
await cNonceStore.set(iopts.accessToken, newCNonce);
|
|
776
820
|
|
|
777
|
-
//
|
|
778
|
-
//
|
|
779
|
-
//
|
|
780
|
-
// c_nonce rotation alone defends against proof replay but not
|
|
781
|
-
// against an attacker who exfiltrated the access token. The
|
|
782
|
-
// accompanying c_nonce entry expires with its TTL; deleting it
|
|
783
|
-
// explicitly tightens cleanup.
|
|
821
|
+
// The single-use access token was already claimed (atomically) before the
|
|
822
|
+
// mint above. Here we only clean up its now-orphaned c_nonce entry (it would
|
|
823
|
+
// otherwise expire with its TTL). Best-effort.
|
|
784
824
|
if (accessTokenSingleUse) {
|
|
785
825
|
try {
|
|
786
|
-
await atStore.del(iopts.accessToken);
|
|
787
826
|
await cNonceStore.del(iopts.accessToken);
|
|
788
827
|
} catch (_e) { /* drop-silent — cleanup is best-effort */ }
|
|
789
828
|
}
|
package/lib/mail-arc-sign.js
CHANGED
|
@@ -177,7 +177,7 @@ function sign(opts) {
|
|
|
177
177
|
validateOpts(opts, [
|
|
178
178
|
"rfc822", "instance", "authservId", "domain", "selector",
|
|
179
179
|
"privateKey", "algorithm", "cv", "authResults",
|
|
180
|
-
"headersToSign", "timestamp", "audit",
|
|
180
|
+
"headersToSign", "timestamp", "audit", "excludeAarFromAms",
|
|
181
181
|
], "mail.arc.sign");
|
|
182
182
|
|
|
183
183
|
validateOpts.requireNonEmptyString(opts.rfc822, "sign: rfc822",
|
package/lib/mail-auth.js
CHANGED
|
@@ -1456,6 +1456,25 @@ function _parseHeaderLines(headerSection) {
|
|
|
1456
1456
|
// limit how far an attacker can push junk headers.
|
|
1457
1457
|
var ARC_MAX_HOPS = 50; // RFC 8617 §5.1.2 chain ceiling
|
|
1458
1458
|
|
|
1459
|
+
// Parse the ARC instance tag (i=) from an ARC header value (RFC 8617
|
|
1460
|
+
// §4.2.1). Strict by construction: the tag must follow a value boundary
|
|
1461
|
+
// (start / ";" / "," / whitespace), use no space around "=", and be 1-3
|
|
1462
|
+
// digits (instances are bounded to [1,50]). EVERY ARC-header instance read
|
|
1463
|
+
// — the indexing pass that drives the AMS/AS crypto checks, the AMS h=
|
|
1464
|
+
// retention test, the per-hop d= extraction, and the finalAr surfacing —
|
|
1465
|
+
// routes through this one parser so they can never disagree about which hop
|
|
1466
|
+
// a header belongs to. A looser parser in one place (e.g. allowing "i = 1"
|
|
1467
|
+
// with a space, or unbounded digits) lets an attacker inject an
|
|
1468
|
+
// ARC-Authentication-Results that the strict crypto pass ignores while a
|
|
1469
|
+
// permissive pass consumes it, forging the upstream auth-results surfaced as
|
|
1470
|
+
// finalAr on a chain that still verifies pass — with no signing key.
|
|
1471
|
+
function _arcInstanceOf(value) {
|
|
1472
|
+
var m = String(value).match(/(?:^|[;,\s])i=(\d{1,3})\b/);
|
|
1473
|
+
if (!m) return null;
|
|
1474
|
+
var inst = parseInt(m[1], 10);
|
|
1475
|
+
return (isFinite(inst) && inst >= 1) ? inst : null;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1459
1478
|
async function arcVerify(rfc822, opts) {
|
|
1460
1479
|
if (typeof rfc822 !== "string" || rfc822.length === 0) {
|
|
1461
1480
|
throw new MailAuthError("mail-auth/arc-bad-input",
|
|
@@ -1491,13 +1510,11 @@ async function arcVerify(rfc822, opts) {
|
|
|
1491
1510
|
var value = khv.value.trim();
|
|
1492
1511
|
if (name !== "arc-seal" && name !== "arc-message-signature" &&
|
|
1493
1512
|
name !== "arc-authentication-results") continue;
|
|
1494
|
-
// ARC hop instance per RFC 8617 §4.2.1 —
|
|
1495
|
-
//
|
|
1496
|
-
//
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
var inst = iMatch ? parseInt(iMatch[1], 10) : null;
|
|
1500
|
-
if (inst === null || !isFinite(inst) || inst < 1) continue;
|
|
1513
|
+
// ARC hop instance per RFC 8617 §4.2.1 — parsed by the shared strict
|
|
1514
|
+
// reader so the index this drives (and the AMS/AS crypto checks keyed on
|
|
1515
|
+
// it) matches every other instance read in the verifier/evaluator.
|
|
1516
|
+
var inst = _arcInstanceOf(value);
|
|
1517
|
+
if (inst === null) continue;
|
|
1501
1518
|
if (inst > maxInstanceSeen) maxInstanceSeen = inst;
|
|
1502
1519
|
var slotKey = inst + ":" + name;
|
|
1503
1520
|
if (seenSlot[slotKey]) { duplicate = true; continue; }
|
|
@@ -1790,7 +1807,9 @@ async function _verifyArc(rfc822, hop, allHops, kind, dnsLookup, dkim) {
|
|
|
1790
1807
|
}
|
|
1791
1808
|
// Current AS with b= emptied. RFC 8617 §5.1.2: canonicalization
|
|
1792
1809
|
// includes the AS header with `b=` value stripped + no trailing CRLF.
|
|
1793
|
-
|
|
1810
|
+
// Use the shared tag-aware stripper (the `\bb=...` regex it replaced
|
|
1811
|
+
// mis-zeroed a value containing `b=` inside another tag, e.g. `d=ab=x`).
|
|
1812
|
+
var asUnsigned = dkim._stripBTagValue(sigValue);
|
|
1794
1813
|
canonicalized += _canonRelaxedHeader("ARC-Seal", asUnsigned).replace(/\r\n$/, "");
|
|
1795
1814
|
|
|
1796
1815
|
// Verify the AS signature.
|
|
@@ -1824,8 +1843,8 @@ async function _verifyAmsViaDkim(rfc822, hop, sigValue, tags, dkim, dnsLookup) {
|
|
|
1824
1843
|
// canonicalizes it via h=). Pre-v0.8.17 stripped every AAR
|
|
1825
1844
|
// unconditionally, breaking verification on chains that
|
|
1826
1845
|
// included AAR in h= (Microsoft + Google interop).
|
|
1827
|
-
var
|
|
1828
|
-
if (
|
|
1846
|
+
var aarInst = _arcInstanceOf(khv.value);
|
|
1847
|
+
if (aarInst === null || aarInst !== hop.instance) continue;
|
|
1829
1848
|
}
|
|
1830
1849
|
rebuilt.push(line);
|
|
1831
1850
|
}
|
|
@@ -1980,12 +1999,14 @@ async function arcEvaluate(rfc822, opts) {
|
|
|
1980
1999
|
var name = khv.key;
|
|
1981
2000
|
var value = khv.value.trim();
|
|
1982
2001
|
if (name === "arc-seal") {
|
|
1983
|
-
var
|
|
2002
|
+
var sealInst = _arcInstanceOf(value);
|
|
1984
2003
|
var dMatch = value.match(/(?:^|[;,\s])d=([^\s;]+)/); // allow:regex-no-length-cap — header bounded by RFC 5322 998
|
|
1985
|
-
if (
|
|
2004
|
+
if (sealInst !== null && dMatch) hopDomains[sealInst] = dMatch[1].toLowerCase();
|
|
1986
2005
|
} else if (name === "arc-authentication-results") {
|
|
1987
|
-
|
|
1988
|
-
|
|
2006
|
+
// Same strict instance reader as the indexing pass — finalAr must be the
|
|
2007
|
+
// AAR the crypto pass actually indexed, never one a looser parser admits.
|
|
2008
|
+
var arInst = _arcInstanceOf(value);
|
|
2009
|
+
if (arInst !== null) hopAr[arInst] = value;
|
|
1989
2010
|
}
|
|
1990
2011
|
}
|
|
1991
2012
|
|
package/lib/mail-dkim.js
CHANGED
|
@@ -1323,6 +1323,7 @@ module.exports = {
|
|
|
1323
1323
|
_canonHeaderRelaxedForTest: _canonHeaderRelaxed,
|
|
1324
1324
|
_canonBodyRelaxedForTest: _canonBodyRelaxed,
|
|
1325
1325
|
_canonBodySimpleForTest: _canonBodySimple,
|
|
1326
|
+
_stripBTagValue: _stripBTagValue, // RFC 6376 §3.5 — tag-aware b= zeroing; shared by the ARC seal verifier (internal cross-module helper)
|
|
1326
1327
|
_stripBTagValueForTest: _stripBTagValue,
|
|
1327
1328
|
// The header-block parser that produces the { name, value } pairs fed to the
|
|
1328
1329
|
// canonicalizers. Exposed so a golden-vector test can pin its byte-exact
|
package/package.json
CHANGED
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:
|
|
5
|
+
"serialNumber": "urn:uuid:c128c8b9-913b-4784-824b-3955b67b7bda",
|
|
6
6
|
"version": 1,
|
|
7
7
|
"metadata": {
|
|
8
|
-
"timestamp": "2026-06-
|
|
8
|
+
"timestamp": "2026-06-29T20:57:16.088Z",
|
|
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.15.
|
|
22
|
+
"bom-ref": "@blamejs/core@0.15.63",
|
|
23
23
|
"type": "application",
|
|
24
24
|
"name": "blamejs",
|
|
25
|
-
"version": "0.15.
|
|
25
|
+
"version": "0.15.63",
|
|
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.15.
|
|
29
|
+
"purl": "pkg:npm/%40blamejs/core@0.15.63",
|
|
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.15.
|
|
57
|
+
"ref": "@blamejs/core@0.15.63",
|
|
58
58
|
"dependsOn": []
|
|
59
59
|
}
|
|
60
60
|
]
|