Bump the npm-development group with 5 updates (#93)

* Bump the npm-development group with 5 updates

Bumps the npm-development group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.9.0` | `7.10.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.9.0` | `7.10.0` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.15.1` | `2.16.0` |
| [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) | `0.40.0` | `0.41.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.2` | `29.1.3` |


Updates `@typescript-eslint/eslint-plugin` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.10.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.10.0/packages/parser)

Updates `eslint-plugin-jsonc` from 2.15.1 to 2.16.0
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ota-meshi/eslint-plugin-jsonc/compare/v2.15.1...v2.16.0)

Updates `markdownlint-cli` from 0.40.0 to 0.41.0
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](https://github.com/igorshubovych/markdownlint-cli/compare/v0.40.0...v0.41.0)

Updates `ts-jest` from 29.1.2 to 29.1.3
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.1.2...v29.1.3)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: markdownlint-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>

* rebuild dist

Signed-off-by: Brian DeHamer <bdehamer@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Brian DeHamer <bdehamer@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brian DeHamer <bdehamer@github.com>
This commit is contained in:
dependabot[bot]
2024-05-31 15:52:33 -07:00
committed by GitHub
parent 70c1bd171e
commit 923ac69214
3 changed files with 223 additions and 161 deletions
Generated Vendored
+108 -74
View File
@@ -76867,6 +76867,30 @@ module.exports = require("node:events");
/***/ }), /***/ }),
/***/ 87561:
/***/ ((module) => {
"use strict";
module.exports = require("node:fs");
/***/ }),
/***/ 93977:
/***/ ((module) => {
"use strict";
module.exports = require("node:fs/promises");
/***/ }),
/***/ 49411:
/***/ ((module) => {
"use strict";
module.exports = require("node:path");
/***/ }),
/***/ 84492: /***/ 84492:
/***/ ((module) => { /***/ ((module) => {
@@ -76875,6 +76899,22 @@ module.exports = require("node:stream");
/***/ }), /***/ }),
/***/ 76915:
/***/ ((module) => {
"use strict";
module.exports = require("node:string_decoder");
/***/ }),
/***/ 41041:
/***/ ((module) => {
"use strict";
module.exports = require("node:url");
/***/ }),
/***/ 47261: /***/ 47261:
/***/ ((module) => { /***/ ((module) => {
@@ -84806,9 +84846,9 @@ const proc = typeof process === 'object' && process
stdout: null, stdout: null,
stderr: null, stderr: null,
}; };
const events_1 = __nccwpck_require__(82361); const node_events_1 = __nccwpck_require__(15673);
const stream_1 = __importDefault(__nccwpck_require__(12781)); const node_stream_1 = __importDefault(__nccwpck_require__(84492));
const string_decoder_1 = __nccwpck_require__(71576); const node_string_decoder_1 = __nccwpck_require__(76915);
/** /**
* Return true if the argument is a Minipass stream, Node stream, or something * Return true if the argument is a Minipass stream, Node stream, or something
* else that Minipass can interact with. * else that Minipass can interact with.
@@ -84816,7 +84856,7 @@ const string_decoder_1 = __nccwpck_require__(71576);
const isStream = (s) => !!s && const isStream = (s) => !!s &&
typeof s === 'object' && typeof s === 'object' &&
(s instanceof Minipass || (s instanceof Minipass ||
s instanceof stream_1.default || s instanceof node_stream_1.default ||
(0, exports.isReadable)(s) || (0, exports.isReadable)(s) ||
(0, exports.isWritable)(s)); (0, exports.isWritable)(s));
exports.isStream = isStream; exports.isStream = isStream;
@@ -84825,17 +84865,17 @@ exports.isStream = isStream;
*/ */
const isReadable = (s) => !!s && const isReadable = (s) => !!s &&
typeof s === 'object' && typeof s === 'object' &&
s instanceof events_1.EventEmitter && s instanceof node_events_1.EventEmitter &&
typeof s.pipe === 'function' && typeof s.pipe === 'function' &&
// node core Writable streams have a pipe() method, but it throws // node core Writable streams have a pipe() method, but it throws
s.pipe !== stream_1.default.Writable.prototype.pipe; s.pipe !== node_stream_1.default.Writable.prototype.pipe;
exports.isReadable = isReadable; exports.isReadable = isReadable;
/** /**
* Return true if the argument is a valid {@link Minipass.Writable} * Return true if the argument is a valid {@link Minipass.Writable}
*/ */
const isWritable = (s) => !!s && const isWritable = (s) => !!s &&
typeof s === 'object' && typeof s === 'object' &&
s instanceof events_1.EventEmitter && s instanceof node_events_1.EventEmitter &&
typeof s.write === 'function' && typeof s.write === 'function' &&
typeof s.end === 'function'; typeof s.end === 'function';
exports.isWritable = isWritable; exports.isWritable = isWritable;
@@ -84942,7 +84982,7 @@ const isEncodingOptions = (o) => !o.objectMode && !!o.encoding && o.encoding !==
* `Events` is the set of event handler signatures that this object * `Events` is the set of event handler signatures that this object
* will emit, see {@link Minipass.Events} * will emit, see {@link Minipass.Events}
*/ */
class Minipass extends events_1.EventEmitter { class Minipass extends node_events_1.EventEmitter {
[FLOWING] = false; [FLOWING] = false;
[PAUSED] = false; [PAUSED] = false;
[PIPES] = []; [PIPES] = [];
@@ -84997,7 +85037,7 @@ class Minipass extends events_1.EventEmitter {
} }
this[ASYNC] = !!options.async; this[ASYNC] = !!options.async;
this[DECODER] = this[ENCODING] this[DECODER] = this[ENCODING]
? new string_decoder_1.StringDecoder(this[ENCODING]) ? new node_string_decoder_1.StringDecoder(this[ENCODING])
: null; : null;
//@ts-ignore - private option for debugging and testing //@ts-ignore - private option for debugging and testing
if (options && options.debugExposeBuffer === true) { if (options && options.debugExposeBuffer === true) {
@@ -85856,14 +85896,14 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.PathScurry = exports.Path = exports.PathScurryDarwin = exports.PathScurryPosix = exports.PathScurryWin32 = exports.PathScurryBase = exports.PathPosix = exports.PathWin32 = exports.PathBase = exports.ChildrenCache = exports.ResolveCache = void 0; exports.PathScurry = exports.Path = exports.PathScurryDarwin = exports.PathScurryPosix = exports.PathScurryWin32 = exports.PathScurryBase = exports.PathPosix = exports.PathWin32 = exports.PathBase = exports.ChildrenCache = exports.ResolveCache = void 0;
const lru_cache_1 = __nccwpck_require__(66091); const lru_cache_1 = __nccwpck_require__(66091);
const path_1 = __nccwpck_require__(71017); const node_path_1 = __nccwpck_require__(49411);
const url_1 = __nccwpck_require__(57310); const node_url_1 = __nccwpck_require__(41041);
const actualFS = __importStar(__nccwpck_require__(57147));
const fs_1 = __nccwpck_require__(57147); const fs_1 = __nccwpck_require__(57147);
const actualFS = __importStar(__nccwpck_require__(87561));
const realpathSync = fs_1.realpathSync.native; const realpathSync = fs_1.realpathSync.native;
// TODO: test perf of fs/promises realpath vs realpathCB, // TODO: test perf of fs/promises realpath vs realpathCB,
// since the promises one uses realpath.native // since the promises one uses realpath.native
const promises_1 = __nccwpck_require__(73292); const promises_1 = __nccwpck_require__(93977);
const minipass_1 = __nccwpck_require__(14968); const minipass_1 = __nccwpck_require__(14968);
const defaultFS = { const defaultFS = {
lstatSync: fs_1.lstatSync, lstatSync: fs_1.lstatSync,
@@ -85879,8 +85919,8 @@ const defaultFS = {
}, },
}; };
// if they just gave us require('fs') then use our default // if they just gave us require('fs') then use our default
const fsFromOption = (fsOption) => !fsOption || fsOption === defaultFS || fsOption === actualFS const fsFromOption = (fsOption) => !fsOption || fsOption === defaultFS || fsOption === actualFS ?
? defaultFS defaultFS
: { : {
...defaultFS, ...defaultFS,
...fsOption, ...fsOption,
@@ -85921,20 +85961,13 @@ const ENOREADLINK = 0b0001_0000_0000;
const ENOREALPATH = 0b0010_0000_0000; const ENOREALPATH = 0b0010_0000_0000;
const ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH; const ENOCHILD = ENOTDIR | ENOENT | ENOREALPATH;
const TYPEMASK = 0b0011_1111_1111; const TYPEMASK = 0b0011_1111_1111;
const entToType = (s) => s.isFile() const entToType = (s) => s.isFile() ? IFREG
? IFREG : s.isDirectory() ? IFDIR
: s.isDirectory() : s.isSymbolicLink() ? IFLNK
? IFDIR : s.isCharacterDevice() ? IFCHR
: s.isSymbolicLink() : s.isBlockDevice() ? IFBLK
? IFLNK : s.isSocket() ? IFSOCK
: s.isCharacterDevice() : s.isFIFO() ? IFIFO
? IFCHR
: s.isBlockDevice()
? IFBLK
: s.isSocket()
? IFSOCK
: s.isFIFO()
? IFIFO
: UNKNOWN; : UNKNOWN;
// normalize unicode path names // normalize unicode path names
const normalizeCache = new Map(); const normalizeCache = new Map();
@@ -86038,6 +86071,11 @@ class PathBase {
* @internal * @internal
*/ */
nocase; nocase;
/**
* boolean indicating that this path is the current working directory
* of the PathScurry collection that contains it.
*/
isCWD = false;
// potential default fs override // potential default fs override
#fs; #fs;
// Stats fields // Stats fields
@@ -86125,13 +86163,19 @@ class PathBase {
#realpath; #realpath;
/** /**
* This property is for compatibility with the Dirent class as of * This property is for compatibility with the Dirent class as of
* Node v20, where Dirent['path'] refers to the path of the directory * Node v20, where Dirent['parentPath'] refers to the path of the
* that was passed to readdir. So, somewhat counterintuitively, this * directory that was passed to readdir. For root entries, it's the path
* property refers to the *parent* path, not the path object itself. * to the entry itself.
* For root entries, it's the path to the entry itself. */
get parentPath() {
return (this.parent || this).fullpath();
}
/**
* Deprecated alias for Dirent['parentPath'] Somewhat counterintuitively,
* this property refers to the *parent* path, not the path object itself.
*/ */
get path() { get path() {
return (this.parent || this).fullpath(); return this.parentPath;
} }
/** /**
* Do not create new Path objects directly. They should always be accessed * Do not create new Path objects directly. They should always be accessed
@@ -86186,8 +86230,8 @@ class PathBase {
const rootPath = this.getRootString(path); const rootPath = this.getRootString(path);
const dir = path.substring(rootPath.length); const dir = path.substring(rootPath.length);
const dirParts = dir.split(this.splitSep); const dirParts = dir.split(this.splitSep);
const result = rootPath const result = rootPath ?
? this.getRoot(rootPath).#resolveParts(dirParts) this.getRoot(rootPath).#resolveParts(dirParts)
: this.#resolveParts(dirParts); : this.#resolveParts(dirParts);
return result; return result;
} }
@@ -86238,9 +86282,7 @@ class PathBase {
} }
// find the child // find the child
const children = this.children(); const children = this.children();
const name = this.nocase const name = this.nocase ? normalizeNocase(pathPart) : normalize(pathPart);
? normalizeNocase(pathPart)
: normalize(pathPart);
for (const p of children) { for (const p of children) {
if (p.#matchName === name) { if (p.#matchName === name) {
return p; return p;
@@ -86250,9 +86292,7 @@ class PathBase {
// actually exist. If we know the parent isn't a dir, then // actually exist. If we know the parent isn't a dir, then
// in fact it CAN'T exist. // in fact it CAN'T exist.
const s = this.parent ? this.sep : ''; const s = this.parent ? this.sep : '';
const fullpath = this.#fullpath const fullpath = this.#fullpath ? this.#fullpath + s + pathPart : undefined;
? this.#fullpath + s + pathPart
: undefined;
const pchild = this.newChild(pathPart, UNKNOWN, { const pchild = this.newChild(pathPart, UNKNOWN, {
...opts, ...opts,
parent: this, parent: this,
@@ -86271,6 +86311,8 @@ class PathBase {
* the cwd, then this ends up being equivalent to the fullpath() * the cwd, then this ends up being equivalent to the fullpath()
*/ */
relative() { relative() {
if (this.isCWD)
return '';
if (this.#relative !== undefined) { if (this.#relative !== undefined) {
return this.#relative; return this.#relative;
} }
@@ -86291,6 +86333,8 @@ class PathBase {
relativePosix() { relativePosix() {
if (this.sep === '/') if (this.sep === '/')
return this.relative(); return this.relative();
if (this.isCWD)
return '';
if (this.#relativePosix !== undefined) if (this.#relativePosix !== undefined)
return this.#relativePosix; return this.#relativePosix;
const name = this.name; const name = this.name;
@@ -86356,23 +86400,15 @@ class PathBase {
return this[`is${type}`](); return this[`is${type}`]();
} }
getType() { getType() {
return this.isUnknown() return (this.isUnknown() ? 'Unknown'
? 'Unknown' : this.isDirectory() ? 'Directory'
: this.isDirectory() : this.isFile() ? 'File'
? 'Directory' : this.isSymbolicLink() ? 'SymbolicLink'
: this.isFile() : this.isFIFO() ? 'FIFO'
? 'File' : this.isCharacterDevice() ? 'CharacterDevice'
: this.isSymbolicLink() : this.isBlockDevice() ? 'BlockDevice'
? 'SymbolicLink' : /* c8 ignore start */ this.isSocket() ? 'Socket'
: this.isFIFO() : 'Unknown');
? 'FIFO'
: this.isCharacterDevice()
? 'CharacterDevice'
: this.isBlockDevice()
? 'BlockDevice'
: /* c8 ignore start */ this.isSocket()
? 'Socket'
: 'Unknown';
/* c8 ignore stop */ /* c8 ignore stop */
} }
/** /**
@@ -86506,8 +86542,8 @@ class PathBase {
* directly. * directly.
*/ */
isNamed(n) { isNamed(n) {
return !this.nocase return !this.nocase ?
? this.#matchName === normalize(n) this.#matchName === normalize(n)
: this.#matchName === normalizeNocase(n); : this.#matchName === normalizeNocase(n);
} }
/** /**
@@ -86563,7 +86599,7 @@ class PathBase {
/* c8 ignore stop */ /* c8 ignore stop */
try { try {
const read = this.#fs.readlinkSync(this.fullpath()); const read = this.#fs.readlinkSync(this.fullpath());
const linkTarget = (this.parent.realpathSync())?.resolve(read); const linkTarget = this.parent.realpathSync()?.resolve(read);
if (linkTarget) { if (linkTarget) {
return (this.#linkTarget = linkTarget); return (this.#linkTarget = linkTarget);
} }
@@ -86684,9 +86720,7 @@ class PathBase {
#readdirMaybePromoteChild(e, c) { #readdirMaybePromoteChild(e, c) {
for (let p = c.provisional; p < c.length; p++) { for (let p = c.provisional; p < c.length; p++) {
const pchild = c[p]; const pchild = c[p];
const name = this.nocase const name = this.nocase ? normalizeNocase(e.name) : normalize(e.name);
? normalizeNocase(e.name)
: normalize(e.name);
if (name !== pchild.#matchName) { if (name !== pchild.#matchName) {
continue; continue;
} }
@@ -86985,6 +87019,8 @@ class PathBase {
[setAsCwd](oldCwd) { [setAsCwd](oldCwd) {
if (oldCwd === this) if (oldCwd === this)
return; return;
oldCwd.isCWD = false;
this.isCWD = true;
const changed = new Set([]); const changed = new Set([]);
let rp = []; let rp = [];
let p = this; let p = this;
@@ -87039,7 +87075,7 @@ class PathWin32 extends PathBase {
* @internal * @internal
*/ */
getRootString(path) { getRootString(path) {
return path_1.win32.parse(path).root; return node_path_1.win32.parse(path).root;
} }
/** /**
* @internal * @internal
@@ -87161,7 +87197,7 @@ class PathScurryBase {
constructor(cwd = process.cwd(), pathImpl, sep, { nocase, childrenCacheSize = 16 * 1024, fs = defaultFS, } = {}) { constructor(cwd = process.cwd(), pathImpl, sep, { nocase, childrenCacheSize = 16 * 1024, fs = defaultFS, } = {}) {
this.#fs = fsFromOption(fs); this.#fs = fsFromOption(fs);
if (cwd instanceof URL || cwd.startsWith('file://')) { if (cwd instanceof URL || cwd.startsWith('file://')) {
cwd = (0, url_1.fileURLToPath)(cwd); cwd = (0, node_url_1.fileURLToPath)(cwd);
} }
// resolve and split root, and then add to the store. // resolve and split root, and then add to the store.
// this is the only time we call path.resolve() // this is the only time we call path.resolve()
@@ -87750,7 +87786,7 @@ class PathScurryWin32 extends PathScurryBase {
sep = '\\'; sep = '\\';
constructor(cwd = process.cwd(), opts = {}) { constructor(cwd = process.cwd(), opts = {}) {
const { nocase = true } = opts; const { nocase = true } = opts;
super(cwd, path_1.win32, '\\', { ...opts, nocase }); super(cwd, node_path_1.win32, '\\', { ...opts, nocase });
this.nocase = nocase; this.nocase = nocase;
for (let p = this.cwd; p; p = p.parent) { for (let p = this.cwd; p; p = p.parent) {
p.nocase = this.nocase; p.nocase = this.nocase;
@@ -87763,7 +87799,7 @@ class PathScurryWin32 extends PathScurryBase {
// if the path starts with a single separator, it's not a UNC, and we'll // if the path starts with a single separator, it's not a UNC, and we'll
// just get separator as the root, and driveFromUNC will return \ // just get separator as the root, and driveFromUNC will return \
// In that case, mount \ on the root from the cwd. // In that case, mount \ on the root from the cwd.
return path_1.win32.parse(dir).root.toUpperCase(); return node_path_1.win32.parse(dir).root.toUpperCase();
} }
/** /**
* @internal * @internal
@@ -87793,7 +87829,7 @@ class PathScurryPosix extends PathScurryBase {
sep = '/'; sep = '/';
constructor(cwd = process.cwd(), opts = {}) { constructor(cwd = process.cwd(), opts = {}) {
const { nocase = false } = opts; const { nocase = false } = opts;
super(cwd, path_1.posix, '/', { ...opts, nocase }); super(cwd, node_path_1.posix, '/', { ...opts, nocase });
this.nocase = nocase; this.nocase = nocase;
} }
/** /**
@@ -87843,10 +87879,8 @@ exports.Path = process.platform === 'win32' ? PathWin32 : PathPosix;
* {@link PathScurryWin32} on Windows systems, {@link PathScurryDarwin} on * {@link PathScurryWin32} on Windows systems, {@link PathScurryDarwin} on
* Darwin (macOS) systems, {@link PathScurryPosix} on all others. * Darwin (macOS) systems, {@link PathScurryPosix} on all others.
*/ */
exports.PathScurry = process.platform === 'win32' exports.PathScurry = process.platform === 'win32' ? PathScurryWin32
? PathScurryWin32 : process.platform === 'darwin' ? PathScurryDarwin
: process.platform === 'darwin'
? PathScurryDarwin
: PathScurryPosix; : PathScurryPosix;
//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map
+110 -82
View File
@@ -15,21 +15,21 @@
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.12", "@types/jest": "^29.5.12",
"@types/node": "^20.12.12", "@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0", "@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.9.0", "@typescript-eslint/parser": "^7.10.0",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2", "eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.5.0", "eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsonc": "^2.15.1", "eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3", "eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0", "jest": "^29.7.0",
"jose": "^5.3.0", "jose": "^5.3.0",
"markdownlint-cli": "^0.40.0", "markdownlint-cli": "^0.41.0",
"nock": "^13.5.4", "nock": "^13.5.4",
"prettier": "^3.2.5", "prettier": "^3.2.5",
"prettier-eslint": "^16.3.0", "prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.2", "ts-jest": "^29.1.3",
"typescript": "^5.4.5" "typescript": "^5.4.5"
}, },
"engines": { "engines": {
@@ -1781,16 +1781,16 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@typescript-eslint/eslint-plugin": { "node_modules/@typescript-eslint/eslint-plugin": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.10.0.tgz",
"integrity": "sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==", "integrity": "sha512-PzCr+a/KAef5ZawX7nbyNwBDtM1HdLIT53aSA2DDlxmxMngZ43O8SIePOeX8H5S+FHXeI6t97mTt/dDdzY4Fyw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@eslint-community/regexpp": "^4.10.0", "@eslint-community/regexpp": "^4.10.0",
"@typescript-eslint/scope-manager": "7.9.0", "@typescript-eslint/scope-manager": "7.10.0",
"@typescript-eslint/type-utils": "7.9.0", "@typescript-eslint/type-utils": "7.10.0",
"@typescript-eslint/utils": "7.9.0", "@typescript-eslint/utils": "7.10.0",
"@typescript-eslint/visitor-keys": "7.9.0", "@typescript-eslint/visitor-keys": "7.10.0",
"graphemer": "^1.4.0", "graphemer": "^1.4.0",
"ignore": "^5.3.1", "ignore": "^5.3.1",
"natural-compare": "^1.4.0", "natural-compare": "^1.4.0",
@@ -1814,15 +1814,15 @@
} }
}, },
"node_modules/@typescript-eslint/parser": { "node_modules/@typescript-eslint/parser": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.10.0.tgz",
"integrity": "sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==", "integrity": "sha512-2EjZMA0LUW5V5tGQiaa2Gys+nKdfrn2xiTIBLR4fxmPmVSvgPcKNW+AE/ln9k0A4zDUti0J/GZXMDupQoI+e1w==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/scope-manager": "7.9.0", "@typescript-eslint/scope-manager": "7.10.0",
"@typescript-eslint/types": "7.9.0", "@typescript-eslint/types": "7.10.0",
"@typescript-eslint/typescript-estree": "7.9.0", "@typescript-eslint/typescript-estree": "7.10.0",
"@typescript-eslint/visitor-keys": "7.9.0", "@typescript-eslint/visitor-keys": "7.10.0",
"debug": "^4.3.4" "debug": "^4.3.4"
}, },
"engines": { "engines": {
@@ -1842,13 +1842,13 @@
} }
}, },
"node_modules/@typescript-eslint/scope-manager": { "node_modules/@typescript-eslint/scope-manager": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.10.0.tgz",
"integrity": "sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==", "integrity": "sha512-7L01/K8W/VGl7noe2mgH0K7BE29Sq6KAbVmxurj8GGaPDZXPr8EEQ2seOeAS+mEV9DnzxBQB6ax6qQQ5C6P4xg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "7.9.0", "@typescript-eslint/types": "7.10.0",
"@typescript-eslint/visitor-keys": "7.9.0" "@typescript-eslint/visitor-keys": "7.10.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || >=20.0.0" "node": "^18.18.0 || >=20.0.0"
@@ -1859,13 +1859,13 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils": { "node_modules/@typescript-eslint/type-utils": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.10.0.tgz",
"integrity": "sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==", "integrity": "sha512-D7tS4WDkJWrVkuzgm90qYw9RdgBcrWmbbRkrLA4d7Pg3w0ttVGDsvYGV19SH8gPR5L7OtcN5J1hTtyenO9xE9g==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/typescript-estree": "7.9.0", "@typescript-eslint/typescript-estree": "7.10.0",
"@typescript-eslint/utils": "7.9.0", "@typescript-eslint/utils": "7.10.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"ts-api-utils": "^1.3.0" "ts-api-utils": "^1.3.0"
}, },
@@ -1886,9 +1886,9 @@
} }
}, },
"node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/types": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.10.0.tgz",
"integrity": "sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==", "integrity": "sha512-7fNj+Ya35aNyhuqrA1E/VayQX9Elwr8NKZ4WueClR3KwJ7Xx9jcCdOrLW04h51de/+gNbyFMs+IDxh5xIwfbNg==",
"dev": true, "dev": true,
"engines": { "engines": {
"node": "^18.18.0 || >=20.0.0" "node": "^18.18.0 || >=20.0.0"
@@ -1899,13 +1899,13 @@
} }
}, },
"node_modules/@typescript-eslint/typescript-estree": { "node_modules/@typescript-eslint/typescript-estree": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.10.0.tgz",
"integrity": "sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==", "integrity": "sha512-LXFnQJjL9XIcxeVfqmNj60YhatpRLt6UhdlFwAkjNc6jSUlK8zQOl1oktAP8PlWFzPQC1jny/8Bai3/HPuvN5g==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "7.9.0", "@typescript-eslint/types": "7.10.0",
"@typescript-eslint/visitor-keys": "7.9.0", "@typescript-eslint/visitor-keys": "7.10.0",
"debug": "^4.3.4", "debug": "^4.3.4",
"globby": "^11.1.0", "globby": "^11.1.0",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
@@ -1951,15 +1951,15 @@
} }
}, },
"node_modules/@typescript-eslint/utils": { "node_modules/@typescript-eslint/utils": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.10.0.tgz",
"integrity": "sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==", "integrity": "sha512-olzif1Fuo8R8m/qKkzJqT7qwy16CzPRWBvERS0uvyc+DHd8AKbO4Jb7kpAvVzMmZm8TrHnI7hvjN4I05zow+tg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@eslint-community/eslint-utils": "^4.4.0", "@eslint-community/eslint-utils": "^4.4.0",
"@typescript-eslint/scope-manager": "7.9.0", "@typescript-eslint/scope-manager": "7.10.0",
"@typescript-eslint/types": "7.9.0", "@typescript-eslint/types": "7.10.0",
"@typescript-eslint/typescript-estree": "7.9.0" "@typescript-eslint/typescript-estree": "7.10.0"
}, },
"engines": { "engines": {
"node": "^18.18.0 || >=20.0.0" "node": "^18.18.0 || >=20.0.0"
@@ -1973,12 +1973,12 @@
} }
}, },
"node_modules/@typescript-eslint/visitor-keys": { "node_modules/@typescript-eslint/visitor-keys": {
"version": "7.9.0", "version": "7.10.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.9.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.10.0.tgz",
"integrity": "sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==", "integrity": "sha512-9ntIVgsi6gg6FIq9xjEO4VQJvwOqA3jaBFQJ/6TK5AvEup2+cECI6Fh7QiBxmfMHXU0V0J4RyPeOU1VDNzl9cg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "7.9.0", "@typescript-eslint/types": "7.10.0",
"eslint-visitor-keys": "^3.4.3" "eslint-visitor-keys": "^3.4.3"
}, },
"engines": { "engines": {
@@ -2746,9 +2746,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/commander": { "node_modules/commander": {
"version": "12.0.0", "version": "12.1.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-12.0.0.tgz", "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
"integrity": "sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==", "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
"dev": true, "dev": true,
"engines": { "engines": {
"node": ">=18" "node": ">=18"
@@ -3491,9 +3491,9 @@
} }
}, },
"node_modules/eslint-plugin-jsonc": { "node_modules/eslint-plugin-jsonc": {
"version": "2.15.1", "version": "2.16.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.15.1.tgz", "resolved": "https://registry.npmjs.org/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.16.0.tgz",
"integrity": "sha512-PVFrqIJa8BbM/e828RSn0SwB/Z5ye+2LDuy2XqG6AymNgPsfApRRcznsbxP7VrjdLEU4Nb+g9n/d6opyp0jp9A==", "integrity": "sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/eslint-utils": "^4.2.0",
@@ -5935,14 +5935,14 @@
} }
}, },
"node_modules/markdownlint-cli": { "node_modules/markdownlint-cli": {
"version": "0.40.0", "version": "0.41.0",
"resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.40.0.tgz", "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.41.0.tgz",
"integrity": "sha512-JXhI3dRQcaqwiFYpPz6VJ7aKYheD53GmTz9y4D/d0F1MbZDGOp9pqKlbOfUX/pHP/iAoeiE4wYRmk8/kjLakxA==", "integrity": "sha512-kp29tKrMKdn+xonfefjp3a/MsNzAd9c5ke0ydMEI9PR98bOjzglYN4nfMSaIs69msUf1DNkgevAIAPtK2SeX0Q==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"commander": "~12.0.0", "commander": "~12.1.0",
"get-stdin": "~9.0.0", "get-stdin": "~9.0.0",
"glob": "~10.3.12", "glob": "~10.4.1",
"ignore": "~5.3.1", "ignore": "~5.3.1",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"jsonc-parser": "~3.2.1", "jsonc-parser": "~3.2.1",
@@ -5950,7 +5950,7 @@
"markdownlint": "~0.34.0", "markdownlint": "~0.34.0",
"minimatch": "~9.0.4", "minimatch": "~9.0.4",
"run-con": "~1.3.2", "run-con": "~1.3.2",
"toml": "~3.0.0" "smol-toml": "~1.2.0"
}, },
"bin": { "bin": {
"markdownlint": "markdownlint.js" "markdownlint": "markdownlint.js"
@@ -5969,27 +5969,45 @@
} }
}, },
"node_modules/markdownlint-cli/node_modules/glob": { "node_modules/markdownlint-cli/node_modules/glob": {
"version": "10.3.12", "version": "10.4.1",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz",
"integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"foreground-child": "^3.1.0", "foreground-child": "^3.1.0",
"jackspeak": "^2.3.6", "jackspeak": "^3.1.2",
"minimatch": "^9.0.1", "minimatch": "^9.0.4",
"minipass": "^7.0.4", "minipass": "^7.1.2",
"path-scurry": "^1.10.2" "path-scurry": "^1.11.1"
}, },
"bin": { "bin": {
"glob": "dist/esm/bin.mjs" "glob": "dist/esm/bin.mjs"
}, },
"engines": { "engines": {
"node": ">=16 || 14 >=14.17" "node": ">=16 || 14 >=14.18"
}, },
"funding": { "funding": {
"url": "https://github.com/sponsors/isaacs" "url": "https://github.com/sponsors/isaacs"
} }
}, },
"node_modules/markdownlint-cli/node_modules/jackspeak": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.1.2.tgz",
"integrity": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==",
"dev": true,
"dependencies": {
"@isaacs/cliui": "^8.0.2"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"optionalDependencies": {
"@pkgjs/parseargs": "^0.11.0"
}
},
"node_modules/markdownlint-cli/node_modules/minimatch": { "node_modules/markdownlint-cli/node_modules/minimatch": {
"version": "9.0.4", "version": "9.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
@@ -6076,8 +6094,9 @@
} }
}, },
"node_modules/minipass": { "node_modules/minipass": {
"version": "7.0.4", "version": "7.1.2",
"license": "ISC", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
"engines": { "engines": {
"node": ">=16 || 14 >=14.17" "node": ">=16 || 14 >=14.17"
} }
@@ -6530,15 +6549,15 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/path-scurry": { "node_modules/path-scurry": {
"version": "1.10.2", "version": "1.11.1",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
"integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": { "dependencies": {
"lru-cache": "^10.2.0", "lru-cache": "^10.2.0",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
}, },
"engines": { "engines": {
"node": ">=16 || 14 >=14.17" "node": ">=16 || 14 >=14.18"
}, },
"funding": { "funding": {
"url": "https://github.com/sponsors/isaacs" "url": "https://github.com/sponsors/isaacs"
@@ -7322,6 +7341,16 @@
"npm": ">= 3.0.0" "npm": ">= 3.0.0"
} }
}, },
"node_modules/smol-toml": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.2.0.tgz",
"integrity": "sha512-KObxdQANC/xje3OoatMbSwQf2XAvJ0RbK+4nmQRszFNZptbNRnMWqbLF/zb4sMi9xJ6HNyhWXeuZ9zC/I/XY7w==",
"dev": true,
"engines": {
"node": ">= 18",
"pnpm": ">= 9"
}
},
"node_modules/socks": { "node_modules/socks": {
"version": "2.8.3", "version": "2.8.3",
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz",
@@ -7678,12 +7707,6 @@
"node": ">=8.0" "node": ">=8.0"
} }
}, },
"node_modules/toml": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz",
"integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==",
"dev": true
},
"node_modules/ts-api-utils": { "node_modules/ts-api-utils": {
"version": "1.3.0", "version": "1.3.0",
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
@@ -7697,9 +7720,10 @@
} }
}, },
"node_modules/ts-jest": { "node_modules/ts-jest": {
"version": "29.1.2", "version": "29.1.3",
"resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.3.tgz",
"integrity": "sha512-6L9qz3ginTd1NKhOxmkP0qU3FyKjj5CPoY+anszfVn6Pmv/RIKzhiMCsH7Yb7UvJR9I2A64rm4zQl531s2F1iw==",
"dev": true, "dev": true,
"license": "MIT",
"dependencies": { "dependencies": {
"bs-logger": "0.x", "bs-logger": "0.x",
"fast-json-stable-stringify": "2.x", "fast-json-stable-stringify": "2.x",
@@ -7714,10 +7738,11 @@
"ts-jest": "cli.js" "ts-jest": "cli.js"
}, },
"engines": { "engines": {
"node": "^16.10.0 || ^18.0.0 || >=20.0.0" "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"@babel/core": ">=7.0.0-beta.0 <8", "@babel/core": ">=7.0.0-beta.0 <8",
"@jest/transform": "^29.0.0",
"@jest/types": "^29.0.0", "@jest/types": "^29.0.0",
"babel-jest": "^29.0.0", "babel-jest": "^29.0.0",
"jest": "^29.0.0", "jest": "^29.0.0",
@@ -7727,6 +7752,9 @@
"@babel/core": { "@babel/core": {
"optional": true "optional": true
}, },
"@jest/transform": {
"optional": true
},
"@jest/types": { "@jest/types": {
"optional": true "optional": true
}, },
+5 -5
View File
@@ -76,21 +76,21 @@
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.12", "@types/jest": "^29.5.12",
"@types/node": "^20.12.12", "@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0", "@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.9.0", "@typescript-eslint/parser": "^7.10.0",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2", "eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.5.0", "eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsonc": "^2.15.1", "eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3", "eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0", "jest": "^29.7.0",
"jose": "^5.3.0", "jose": "^5.3.0",
"markdownlint-cli": "^0.40.0", "markdownlint-cli": "^0.41.0",
"nock": "^13.5.4", "nock": "^13.5.4",
"prettier": "^3.2.5", "prettier": "^3.2.5",
"prettier-eslint": "^16.3.0", "prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.2", "ts-jest": "^29.1.3",
"typescript": "^5.4.5" "typescript": "^5.4.5"
} }
} }