2016-12-17 23:51:25 -07:00
|
|
|
{
|
2017-01-10 14:38:37 -07:00
|
|
|
"name": "renovate",
|
2018-03-30 13:19:30 -06:00
|
|
|
"description": "Automated dependency updates. Flexible so you don't need to be.",
|
2017-06-29 06:36:50 -06:00
|
|
|
"version": "0.0.0-semantic-release",
|
2023-12-05 02:34:08 -07:00
|
|
|
"type": "commonjs",
|
2018-03-06 07:43:15 -07:00
|
|
|
"bin": {
|
2019-04-26 04:59:51 -06:00
|
|
|
"renovate": "dist/renovate.js",
|
2020-05-16 04:11:56 -06:00
|
|
|
"renovate-config-validator": "dist/config-validator.js"
|
2018-03-06 07:43:15 -07:00
|
|
|
},
|
2017-01-10 14:38:37 -07:00
|
|
|
"scripts": {
|
2023-08-03 13:43:47 -06:00
|
|
|
"build": "run-s clean 'generate:*' 'compile:*' create-json-schema",
|
2024-02-09 06:23:49 -07:00
|
|
|
"build:docker": "ts-node tools/docker.ts",
|
|
|
|
"build:docs": "ts-node tools/generate-docs.ts",
|
2021-12-09 13:12:49 -07:00
|
|
|
"clean": "rimraf dist tmp",
|
2022-02-11 00:51:51 -07:00
|
|
|
"clean-cache": "node tools/clean-cache.mjs",
|
2019-07-23 02:34:02 -06:00
|
|
|
"compile:ts": "tsc -p tsconfig.app.json",
|
2023-05-24 03:31:48 -06:00
|
|
|
"config-validator": "ts-node lib/config-validator.ts",
|
2023-08-03 13:43:47 -06:00
|
|
|
"create-json-schema": "ts-node tools/generate-schema.ts && prettier --write --cache 'renovate-schema.json'",
|
|
|
|
"debug": "NODE_OPTIONS=--inspect-brk ts-node lib/renovate.ts",
|
2021-05-07 13:58:21 -06:00
|
|
|
"doc-fix": "run-s markdown-lint-fix prettier-fix",
|
2023-09-25 02:21:14 -06:00
|
|
|
"doc-fix-everything": "run-s doc-fix doc-fence-check lint-documentation",
|
2021-11-11 03:11:55 -07:00
|
|
|
"doc-fence-check": "node tools/check-fenced-code.mjs",
|
2023-07-30 01:02:31 -06:00
|
|
|
"lint-documentation": "jest --coverage false test/documentation.spec.ts",
|
2023-06-12 05:38:43 -06:00
|
|
|
"eslint": "eslint . --cache --cache-location .cache/eslint --report-unused-disable-directives",
|
|
|
|
"eslint-fix": "eslint --cache --cache-location .cache/eslint --fix . --report-unused-disable-directives",
|
|
|
|
"eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
|
2023-08-03 13:43:47 -06:00
|
|
|
"generate": "run-s 'generate:*'",
|
2021-05-07 13:58:21 -06:00
|
|
|
"generate:imports": "node tools/generate-imports.mjs",
|
2021-09-15 09:04:17 -06:00
|
|
|
"git-check": "node tools/check-git-version.mjs",
|
2024-04-22 02:22:45 -06:00
|
|
|
"jest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal node --experimental-vm-modules node_modules/jest/bin/jest.js --logHeapUsage",
|
2023-01-06 06:54:11 -07:00
|
|
|
"lint": "run-s ls-lint type-check eslint prettier markdown-lint git-check doc-fence-check",
|
2021-03-09 23:53:46 -07:00
|
|
|
"lint-fix": "run-s eslint-fix prettier-fix markdown-lint-fix",
|
2020-12-11 05:29:43 -07:00
|
|
|
"ls-lint": "ls-lint",
|
2021-03-09 23:53:46 -07:00
|
|
|
"markdown-lint": "markdownlint-cli2",
|
2024-01-28 13:31:24 -07:00
|
|
|
"markdown-lint-fix": "markdownlint-cli2 --fix",
|
2024-08-14 11:44:52 -06:00
|
|
|
"mkdocs": "ts-node tools/mkdocs.ts",
|
2023-08-03 13:43:47 -06:00
|
|
|
"prepare": "run-s 'prepare:*'",
|
2024-02-07 06:16:16 -07:00
|
|
|
"prepare:husky": "husky",
|
2023-08-03 13:43:47 -06:00
|
|
|
"prepare:generate": "run-s 'generate:*'",
|
2024-07-01 05:27:43 -06:00
|
|
|
"prepare:deps": "node tools/prepare-deps.mjs",
|
2023-08-03 13:43:47 -06:00
|
|
|
"prestart": "run-s 'generate:*'",
|
|
|
|
"pretest": "run-s 'generate:*'",
|
|
|
|
"prettier": "prettier --cache --check '**/*.{ts,js,mjs,json,md,yml}'",
|
|
|
|
"prettier-fix": "prettier --write --cache '**/*.{ts,js,mjs,json,md,yml}'",
|
2024-02-09 06:23:49 -07:00
|
|
|
"release:prepare": "ts-node tools/prepare-release.ts",
|
|
|
|
"release:publish": "ts-node tools/publish-release.ts",
|
2023-05-24 03:31:48 -06:00
|
|
|
"start": "ts-node lib/renovate.ts",
|
2023-01-06 06:54:11 -07:00
|
|
|
"test": "run-s lint test-schema jest",
|
2017-06-03 22:34:41 -06:00
|
|
|
"test-dirty": "git diff --exit-code",
|
2023-08-03 13:43:47 -06:00
|
|
|
"test-e2e": "run-s 'test-e2e:*'",
|
2023-08-03 06:19:36 -06:00
|
|
|
"test-e2e:pack": "npm pack",
|
|
|
|
"test-e2e:install": "cd test/e2e && npm install --no-package-lock --prod",
|
|
|
|
"test-e2e:run": "cd test/e2e && npm test",
|
2022-02-11 00:51:51 -07:00
|
|
|
"test-schema": "run-s create-json-schema",
|
2024-10-29 09:51:06 -06:00
|
|
|
"test:docs": "node --test tools/docs/test/**/*.mjs",
|
2023-06-14 05:55:23 -06:00
|
|
|
"schedule-test-shards": "SCHEDULE_TEST_SHARDS=true ts-node jest.config.ts",
|
2020-03-24 00:17:59 -06:00
|
|
|
"tsc": "tsc",
|
2023-08-03 13:43:47 -06:00
|
|
|
"type-check": "run-s 'generate:*' 'tsc --noEmit {@}' --",
|
|
|
|
"update-static-data": "run-s 'update-static-data:*'",
|
2022-08-15 04:18:51 -06:00
|
|
|
"update-static-data:distro-info": "node tools/static-data/generate-distro-info.mjs",
|
2024-02-08 09:28:38 -07:00
|
|
|
"update-static-data:node-schedule": "node tools/static-data/generate-node-schedule.mjs"
|
2017-01-10 14:38:37 -07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-06-26 03:31:18 -06:00
|
|
|
"url": "https://github.com/renovatebot/renovate.git"
|
2017-01-10 14:38:37 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
2018-03-30 13:19:30 -06:00
|
|
|
"automated",
|
2023-08-03 05:54:54 -06:00
|
|
|
"azure",
|
2018-12-12 04:05:40 -07:00
|
|
|
"bazel",
|
|
|
|
"bitbucket",
|
|
|
|
"buildkite",
|
|
|
|
"dependencies",
|
2018-03-30 13:19:30 -06:00
|
|
|
"dependency",
|
|
|
|
"docker",
|
2023-08-03 05:54:54 -06:00
|
|
|
"gitea",
|
2018-12-12 04:05:40 -07:00
|
|
|
"github",
|
|
|
|
"gitlab",
|
2018-03-30 13:19:30 -06:00
|
|
|
"management",
|
|
|
|
"meteor",
|
|
|
|
"node",
|
2017-01-10 14:38:37 -07:00
|
|
|
"npm",
|
|
|
|
"outdated",
|
2018-12-12 04:05:40 -07:00
|
|
|
"php",
|
2023-08-03 05:54:54 -06:00
|
|
|
"pnpm",
|
2018-12-12 04:05:40 -07:00
|
|
|
"python",
|
2018-03-30 13:19:30 -06:00
|
|
|
"update",
|
|
|
|
"yarn"
|
2017-01-10 14:38:37 -07:00
|
|
|
],
|
2017-01-15 09:28:32 -07:00
|
|
|
"author": "Rhys Arkins <rhys@arkins.net>",
|
2017-11-12 02:26:53 -07:00
|
|
|
"contributors": [
|
2023-03-10 21:11:42 -07:00
|
|
|
"Adam Setch <adam.setch@outlook.com>",
|
2020-11-24 12:15:08 -07:00
|
|
|
"Alex DelVecchio <alex@de.lvecch.io>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Andreas Bexelius <andreas.brostrom@nordnet.se>",
|
2018-06-14 23:28:12 -06:00
|
|
|
"Ayoub Kaanich <kayoub5@live.com>",
|
|
|
|
"Dragomir Țurcanu <dragomirt22@gmail.com>",
|
2018-08-28 23:30:03 -06:00
|
|
|
"Filip Stenbeck <filip.stenbeck@gmail.com>",
|
2020-10-26 01:39:48 -06:00
|
|
|
"HonkingGoose",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Hutson Betts <hutson@hyper-expanse.net>",
|
2019-07-25 23:06:50 -06:00
|
|
|
"IKEDA Sho <suicaicoca@gmail.com>",
|
2018-10-31 01:53:23 -06:00
|
|
|
"Israel Bethencourt <ieb.core@gmail.com>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"James King <james@jamesking56.uk>",
|
|
|
|
"Jamie Magee <jamie.magee@gmail.com>",
|
2018-12-18 03:20:21 -07:00
|
|
|
"Jan Sauer <jan@jansauer.de>",
|
2019-03-14 22:29:39 -06:00
|
|
|
"Jean-Yves Couët <jycouet@gmail.com>",
|
2022-04-14 00:13:40 -06:00
|
|
|
"Kenneth Jørgensen <kenneth@autonomouslogic.com>",
|
2019-08-22 12:09:23 -06:00
|
|
|
"Kevin James <KevinJames@thekev.in>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Klaus Meinhardt <klaus.meinhardt1@gmail.com>",
|
2019-04-09 23:13:03 -06:00
|
|
|
"Matt Lavin <matt.lavin@gmail.com>",
|
2020-01-28 01:45:51 -07:00
|
|
|
"Maximilian Gaß <mxey@mxey.net>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Michael Elufimov <elufimov@gmail.com>",
|
|
|
|
"Michael Kriese <michael.kriese@visualon.de>",
|
|
|
|
"Mike Bryant <mike@mikebryant.me.uk>",
|
|
|
|
"Nicolas Byl <nico@nicolas-byl.eu>",
|
|
|
|
"Pravesh Tora <pravesh.tora@gmail.com>",
|
2019-04-15 23:40:24 -06:00
|
|
|
"Rishabh Jain <contact@rishabh1403.com>",
|
2021-02-26 08:21:24 -07:00
|
|
|
"Roope Hakulinen <roope.hakulinen@gmail.com>",
|
2019-09-22 03:37:50 -06:00
|
|
|
"Ryan Murfitt <rmurfitt@gmail.com>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Sam Bull <lsb@pocketuniverse.ca>",
|
|
|
|
"Sam Neirinck <sam@samneirinck.com>",
|
2020-01-28 01:45:51 -07:00
|
|
|
"Sourav Das <souravdasslg95@gmail.com>",
|
2019-07-11 09:22:28 -06:00
|
|
|
"Tanuel <tanuel.mategi@gmail.com>",
|
2020-03-30 13:24:33 -06:00
|
|
|
"Viral Ruparel <viralruparel@gmail.com>",
|
2020-04-03 03:04:34 -06:00
|
|
|
"Vladimir Starkov <iamstarkov@gmail.com>",
|
2020-06-28 02:25:02 -06:00
|
|
|
"Mikhail Yakushin <driver733@gmail.com>",
|
2020-09-22 05:58:37 -06:00
|
|
|
"Sebastian Poxhofer <sebastian@poxhofer.at>",
|
2021-04-15 03:18:51 -06:00
|
|
|
"Henry Sachs <henrysachs@gmail.com>",
|
2021-11-19 02:59:06 -07:00
|
|
|
"Arkadiusz Kosmala <kosmala.arkadiusz@gmail.com>",
|
2021-12-06 07:08:01 -07:00
|
|
|
"Markus Siebert <mail@markussiebert.com>",
|
|
|
|
"Sergey Vedmak <serg.vedmak@gmail.com>"
|
2017-11-12 02:26:53 -07:00
|
|
|
],
|
2022-09-01 14:00:35 -06:00
|
|
|
"license": "AGPL-3.0-only",
|
2017-01-10 14:38:37 -07:00
|
|
|
"bugs": {
|
2018-06-26 03:31:18 -06:00
|
|
|
"url": "https://github.com/renovatebot/renovate/issues"
|
2017-01-10 14:38:37 -07:00
|
|
|
},
|
2018-06-26 03:31:18 -06:00
|
|
|
"homepage": "https://renovatebot.com",
|
2017-01-11 11:32:45 -07:00
|
|
|
"engines": {
|
2024-11-01 05:10:23 -06:00
|
|
|
"node": "^20.15.1 || ^22.11.0",
|
2024-04-29 05:10:01 -06:00
|
|
|
"pnpm": "^9.0.0"
|
2017-01-11 11:32:45 -07:00
|
|
|
},
|
2024-10-30 08:36:12 -06:00
|
|
|
"volta": {
|
2024-11-01 05:10:23 -06:00
|
|
|
"node": "22.11.0",
|
2024-11-03 20:32:31 -07:00
|
|
|
"pnpm": "9.12.3"
|
2024-10-21 23:36:20 -06:00
|
|
|
},
|
2016-12-17 23:51:25 -07:00
|
|
|
"dependencies": {
|
2024-11-12 00:17:38 -07:00
|
|
|
"@aws-sdk/client-codecommit": "3.687.0",
|
|
|
|
"@aws-sdk/client-ec2": "3.687.0",
|
|
|
|
"@aws-sdk/client-ecr": "3.687.0",
|
|
|
|
"@aws-sdk/client-rds": "3.687.0",
|
|
|
|
"@aws-sdk/client-s3": "3.689.0",
|
|
|
|
"@aws-sdk/credential-providers": "3.687.0",
|
2023-12-05 17:44:16 -07:00
|
|
|
"@breejs/later": "4.2.0",
|
2024-09-30 04:16:28 -06:00
|
|
|
"@cdktf/hcl2json": "0.20.9",
|
2024-06-12 23:00:08 -06:00
|
|
|
"@opentelemetry/api": "1.9.0",
|
2024-10-30 12:58:40 -06:00
|
|
|
"@opentelemetry/context-async-hooks": "1.27.0",
|
2024-11-14 06:49:09 -07:00
|
|
|
"@opentelemetry/exporter-trace-otlp-http": "0.54.2",
|
|
|
|
"@opentelemetry/instrumentation": "0.54.2",
|
2024-11-01 09:09:32 -06:00
|
|
|
"@opentelemetry/instrumentation-bunyan": "0.42.0",
|
2024-11-14 06:49:09 -07:00
|
|
|
"@opentelemetry/instrumentation-http": "0.54.2",
|
2024-10-30 12:58:40 -06:00
|
|
|
"@opentelemetry/resources": "1.27.0",
|
|
|
|
"@opentelemetry/sdk-trace-base": "1.27.0",
|
|
|
|
"@opentelemetry/sdk-trace-node": "1.27.0",
|
2024-08-29 10:03:03 -06:00
|
|
|
"@opentelemetry/semantic-conventions": "1.27.0",
|
2023-01-21 02:02:52 -07:00
|
|
|
"@qnighy/marshal": "0.1.3",
|
2024-08-26 10:20:49 -06:00
|
|
|
"@renovatebot/detect-tools": "1.1.0",
|
2024-11-12 22:34:32 -07:00
|
|
|
"@renovatebot/kbpgp": "4.0.0",
|
2024-09-06 04:21:56 -06:00
|
|
|
"@renovatebot/osv-offline": "1.5.10",
|
2024-11-12 23:59:36 -07:00
|
|
|
"@renovatebot/pep440": "4.0.1",
|
2024-11-12 22:23:22 -07:00
|
|
|
"@renovatebot/ruby-semver": "4.0.0",
|
2022-03-06 03:19:18 -07:00
|
|
|
"@sindresorhus/is": "4.6.0",
|
2024-10-25 10:44:45 -06:00
|
|
|
"@yarnpkg/core": "4.1.4",
|
2024-05-09 13:30:00 -06:00
|
|
|
"@yarnpkg/parsers": "3.0.2",
|
2023-08-11 13:28:22 -06:00
|
|
|
"agentkeepalive": "4.5.0",
|
2022-09-06 07:36:19 -06:00
|
|
|
"aggregate-error": "3.1.0",
|
2024-08-16 11:14:48 -06:00
|
|
|
"async-mutex": "0.5.0",
|
2021-10-01 13:50:27 -06:00
|
|
|
"auth-header": "1.0.0",
|
2024-09-04 04:46:25 -06:00
|
|
|
"aws4": "1.13.2",
|
2024-10-04 06:57:14 -06:00
|
|
|
"azure-devops-node-api": "14.1.0",
|
2021-01-15 19:01:21 -07:00
|
|
|
"bunyan": "1.8.15",
|
2024-07-18 11:23:19 -06:00
|
|
|
"cacache": "18.0.4",
|
2021-08-06 06:54:10 -06:00
|
|
|
"chalk": "4.1.2",
|
2018-07-30 19:16:42 -06:00
|
|
|
"changelog-filename-regex": "2.0.1",
|
2019-03-07 03:30:13 -07:00
|
|
|
"clean-git-ref": "2.0.1",
|
2024-05-25 07:52:48 -06:00
|
|
|
"commander": "12.1.0",
|
2020-10-23 02:33:25 -06:00
|
|
|
"conventional-commits-detector": "1.0.3",
|
2023-08-21 08:59:00 -06:00
|
|
|
"cron-parser": "4.9.0",
|
2024-11-04 07:55:19 -07:00
|
|
|
"cronstrue": "2.51.0",
|
2023-03-23 21:13:05 -06:00
|
|
|
"deepmerge": "4.3.1",
|
2022-07-18 18:11:29 -06:00
|
|
|
"dequal": "2.0.3",
|
2021-06-04 07:57:01 -06:00
|
|
|
"detect-indent": "6.1.0",
|
2024-05-27 06:48:58 -06:00
|
|
|
"diff": "5.2.0",
|
2023-07-05 06:38:58 -06:00
|
|
|
"editorconfig": "2.0.0",
|
2021-09-02 08:29:54 -06:00
|
|
|
"email-addresses": "5.0.0",
|
2024-09-02 07:16:05 -06:00
|
|
|
"emoji-regex": "10.4.0",
|
2024-06-10 19:31:59 -06:00
|
|
|
"emojibase": "15.3.1",
|
2024-06-14 06:28:20 -06:00
|
|
|
"emojibase-regex": "15.3.2",
|
2021-08-27 07:58:50 -06:00
|
|
|
"extract-zip": "2.0.1",
|
2022-12-10 16:13:24 -07:00
|
|
|
"find-packages": "10.0.4",
|
2020-08-25 07:06:06 -06:00
|
|
|
"find-up": "5.0.0",
|
2023-12-04 19:22:16 -07:00
|
|
|
"fs-extra": "11.2.0",
|
2024-11-04 13:04:40 -07:00
|
|
|
"git-url-parse": "15.0.0",
|
2017-06-27 09:35:23 -06:00
|
|
|
"github-url-from-git": "1.5.0",
|
2024-08-01 10:59:45 -06:00
|
|
|
"glob": "11.0.0",
|
2021-12-23 03:00:48 -07:00
|
|
|
"global-agent": "3.0.0",
|
2023-05-15 15:38:59 -06:00
|
|
|
"good-enough-parser": "1.1.23",
|
2024-10-17 16:37:26 -06:00
|
|
|
"google-auth-library": "9.14.2",
|
2022-12-15 19:18:25 -07:00
|
|
|
"got": "11.8.6",
|
2023-12-13 12:52:57 -07:00
|
|
|
"graph-data-structure": "3.5.0",
|
2023-08-09 00:40:38 -06:00
|
|
|
"handlebars": "4.7.8",
|
2024-11-04 13:04:09 -07:00
|
|
|
"ignore": "6.0.2",
|
2024-11-05 00:34:33 -07:00
|
|
|
"ini": "5.0.0",
|
2021-02-13 02:22:12 -07:00
|
|
|
"json-dup-key-validator": "1.0.3",
|
2021-05-26 05:48:21 -06:00
|
|
|
"json-stringify-pretty-compact": "3.0.0",
|
2023-01-03 02:59:19 -07:00
|
|
|
"json5": "2.2.3",
|
2024-05-16 04:13:24 -06:00
|
|
|
"jsonata": "2.0.5",
|
2024-07-01 10:47:12 -06:00
|
|
|
"jsonc-parser": "3.3.1",
|
2023-06-26 11:21:29 -06:00
|
|
|
"klona": "2.0.6",
|
2024-08-10 17:50:26 -06:00
|
|
|
"luxon": "3.5.0",
|
2024-05-02 04:45:24 -06:00
|
|
|
"markdown-it": "14.1.0",
|
2020-07-21 23:33:08 -06:00
|
|
|
"markdown-table": "2.0.0",
|
2024-08-08 04:56:41 -06:00
|
|
|
"minimatch": "10.0.1",
|
2022-10-10 09:00:21 -06:00
|
|
|
"moo": "0.5.2",
|
2023-02-06 02:42:34 -07:00
|
|
|
"ms": "2.1.3",
|
2023-11-12 23:26:52 -07:00
|
|
|
"nanoid": "3.3.7",
|
2024-08-16 11:22:31 -06:00
|
|
|
"neotraverse": "0.6.18",
|
2024-04-04 22:38:54 -06:00
|
|
|
"node-html-parser": "6.1.13",
|
2020-07-19 08:05:00 -06:00
|
|
|
"p-all": "3.0.0",
|
2020-05-08 12:00:47 -06:00
|
|
|
"p-map": "4.0.0",
|
2020-12-11 03:21:09 -07:00
|
|
|
"p-queue": "6.6.2",
|
2022-10-25 05:03:19 -06:00
|
|
|
"p-throttle": "4.1.1",
|
2022-01-12 22:45:50 -07:00
|
|
|
"parse-link-header": "2.0.0",
|
2024-07-20 10:51:43 -06:00
|
|
|
"prettier": "3.3.3",
|
2024-10-30 08:36:12 -06:00
|
|
|
"protobufjs": "7.4.0",
|
2024-11-13 07:55:29 -07:00
|
|
|
"punycode": "2.3.1",
|
2024-08-05 09:52:50 -06:00
|
|
|
"redis": "4.7.0",
|
2021-05-18 21:23:59 -06:00
|
|
|
"remark": "13.0.0",
|
|
|
|
"remark-github": "10.1.0",
|
2024-09-01 22:22:55 -06:00
|
|
|
"safe-stable-stringify": "2.5.0",
|
2024-07-23 17:18:30 -06:00
|
|
|
"semver": "7.6.3",
|
2019-08-28 00:29:33 -06:00
|
|
|
"semver-stable": "3.0.0",
|
2018-10-10 08:06:20 -06:00
|
|
|
"semver-utils": "1.1.4",
|
2022-07-01 23:30:30 -06:00
|
|
|
"shlex": "2.1.2",
|
2024-09-26 07:34:38 -06:00
|
|
|
"simple-git": "3.27.0",
|
2023-04-02 10:22:03 -06:00
|
|
|
"slugify": "1.6.6",
|
2022-12-23 05:12:32 -07:00
|
|
|
"source-map-support": "0.5.21",
|
2024-07-02 21:09:56 -06:00
|
|
|
"toml-eslint-parser": "0.10.0",
|
2024-11-07 17:49:05 -07:00
|
|
|
"tslib": "2.8.1",
|
2020-11-17 07:42:55 -07:00
|
|
|
"upath": "2.0.1",
|
2020-09-18 03:46:35 -06:00
|
|
|
"url-join": "4.0.1",
|
2024-11-04 07:49:13 -07:00
|
|
|
"validate-npm-package-name": "6.0.0",
|
2023-02-10 03:13:47 -07:00
|
|
|
"vuln-vects": "1.1.0",
|
2023-03-27 17:45:04 -06:00
|
|
|
"xmldoc": "1.3.0",
|
2024-10-20 07:12:07 -06:00
|
|
|
"yaml": "2.6.0",
|
2024-05-15 02:56:04 -06:00
|
|
|
"zod": "3.23.8"
|
2017-01-10 14:28:22 -07:00
|
|
|
},
|
2019-08-25 06:29:51 -06:00
|
|
|
"optionalDependencies": {
|
2024-10-28 22:07:34 -06:00
|
|
|
"better-sqlite3": "11.5.0",
|
2024-11-14 03:10:41 -07:00
|
|
|
"openpgp": "6.0.0",
|
2024-08-30 22:52:16 -06:00
|
|
|
"re2": "1.21.4"
|
2019-08-25 06:29:51 -06:00
|
|
|
},
|
2017-01-10 14:28:22 -07:00
|
|
|
"devDependencies": {
|
2024-02-26 04:17:12 -07:00
|
|
|
"@hyrious/marshal": "0.3.3",
|
2023-09-19 01:52:57 -06:00
|
|
|
"@jest/environment": "29.7.0",
|
|
|
|
"@jest/globals": "29.7.0",
|
|
|
|
"@jest/reporters": "29.7.0",
|
|
|
|
"@jest/test-result": "29.7.0",
|
2023-08-28 12:44:50 -06:00
|
|
|
"@jest/types": "29.6.3",
|
2024-03-22 03:25:26 -06:00
|
|
|
"@ls-lint/ls-lint": "2.2.3",
|
2024-11-14 03:10:41 -07:00
|
|
|
"@openpgp/web-stream-tools": "0.1.3",
|
2023-08-03 13:43:47 -06:00
|
|
|
"@renovate/eslint-plugin": "file:tools/eslint",
|
2021-12-22 13:40:00 -07:00
|
|
|
"@semantic-release/exec": "6.0.3",
|
2024-11-13 07:26:45 -07:00
|
|
|
"@swc/core": "1.9.1",
|
2023-11-27 18:41:11 -07:00
|
|
|
"@types/auth-header": "1.0.6",
|
2023-11-13 18:52:53 -07:00
|
|
|
"@types/aws4": "1.11.6",
|
2024-07-08 23:14:14 -06:00
|
|
|
"@types/better-sqlite3": "7.6.11",
|
2023-11-13 19:16:21 -07:00
|
|
|
"@types/breejs__later": "4.1.5",
|
2023-11-13 21:46:54 -07:00
|
|
|
"@types/bunyan": "1.8.11",
|
2023-11-13 22:25:35 -07:00
|
|
|
"@types/cacache": "17.0.2",
|
2023-11-13 21:56:38 -07:00
|
|
|
"@types/callsite": "1.0.34",
|
2023-11-14 12:48:40 -07:00
|
|
|
"@types/changelog-filename-regex": "2.0.2",
|
2023-11-13 22:21:16 -07:00
|
|
|
"@types/clean-git-ref": "2.0.2",
|
2023-11-13 23:29:19 -07:00
|
|
|
"@types/common-tags": "1.8.4",
|
2023-11-14 00:12:15 -07:00
|
|
|
"@types/conventional-commits-detector": "1.0.2",
|
2024-10-14 18:12:26 -06:00
|
|
|
"@types/diff": "5.2.3",
|
2024-09-02 03:00:42 -06:00
|
|
|
"@types/eslint": "8.56.12",
|
2023-11-14 14:31:52 -07:00
|
|
|
"@types/fs-extra": "11.0.4",
|
2023-11-14 00:12:21 -07:00
|
|
|
"@types/git-url-parse": "9.0.3",
|
2023-11-14 02:49:30 -07:00
|
|
|
"@types/github-url-from-git": "1.5.3",
|
2023-11-14 12:30:15 -07:00
|
|
|
"@types/global-agent": "2.1.3",
|
2024-06-16 00:43:13 -06:00
|
|
|
"@types/ini": "4.1.1",
|
2023-11-14 15:11:31 -07:00
|
|
|
"@types/js-yaml": "4.0.9",
|
2023-11-14 03:25:06 -07:00
|
|
|
"@types/json-dup-key-validator": "1.0.2",
|
2023-11-14 06:03:36 -07:00
|
|
|
"@types/linkify-markdown": "1.0.3",
|
2024-11-05 23:02:56 -07:00
|
|
|
"@types/lodash": "4.17.13",
|
2024-01-21 16:11:28 -07:00
|
|
|
"@types/luxon": "3.4.2",
|
2024-08-14 02:44:52 -06:00
|
|
|
"@types/markdown-it": "14.1.2",
|
2020-05-07 02:23:45 -06:00
|
|
|
"@types/markdown-table": "2.0.0",
|
2023-11-14 12:29:00 -07:00
|
|
|
"@types/marshal": "0.5.3",
|
2023-11-14 17:55:12 -07:00
|
|
|
"@types/mdast": "3.0.15",
|
2023-11-14 11:10:49 -07:00
|
|
|
"@types/moo": "0.5.9",
|
2024-05-02 02:32:32 -06:00
|
|
|
"@types/ms": "0.7.34",
|
2024-11-10 02:02:30 -07:00
|
|
|
"@types/node": "20.17.6",
|
2023-11-14 12:24:45 -07:00
|
|
|
"@types/parse-link-header": "2.0.3",
|
2024-11-13 07:55:29 -07:00
|
|
|
"@types/punycode": "2.1.4",
|
2024-03-19 00:03:33 -06:00
|
|
|
"@types/semver": "7.5.8",
|
2023-11-14 14:22:28 -07:00
|
|
|
"@types/semver-stable": "3.0.2",
|
2023-11-14 12:18:03 -07:00
|
|
|
"@types/semver-utils": "1.1.3",
|
2024-04-24 19:08:16 -06:00
|
|
|
"@types/tar": "6.1.13",
|
2024-05-02 02:32:32 -06:00
|
|
|
"@types/tmp": "0.2.6",
|
2024-08-21 21:18:36 -06:00
|
|
|
"@types/unist": "2.0.11",
|
2023-11-14 18:28:59 -07:00
|
|
|
"@types/url-join": "4.0.3",
|
2023-11-14 13:25:23 -07:00
|
|
|
"@types/validate-npm-package-name": "4.0.2",
|
2023-11-14 21:08:42 -07:00
|
|
|
"@types/xmldoc": "1.1.9",
|
2024-10-28 12:37:33 -06:00
|
|
|
"@typescript-eslint/eslint-plugin": "8.11.0",
|
|
|
|
"@typescript-eslint/parser": "8.11.0",
|
2024-10-22 11:08:04 -06:00
|
|
|
"aws-sdk-client-mock": "4.1.0",
|
2022-01-23 14:23:54 -07:00
|
|
|
"callsite": "1.0.0",
|
2022-11-15 01:35:36 -07:00
|
|
|
"common-tags": "1.8.2",
|
2024-07-01 14:04:08 -06:00
|
|
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
2024-06-14 06:28:20 -06:00
|
|
|
"emojibase-data": "15.3.2",
|
2024-09-16 10:35:47 -06:00
|
|
|
"eslint": "8.57.1",
|
2024-09-02 09:56:19 -06:00
|
|
|
"eslint-formatter-gha": "1.5.1",
|
2024-09-02 07:15:07 -06:00
|
|
|
"eslint-import-resolver-typescript": "3.6.3",
|
2024-10-10 06:48:00 -06:00
|
|
|
"eslint-plugin-import": "2.31.0",
|
2024-09-11 21:45:22 -06:00
|
|
|
"eslint-plugin-jest": "28.8.3",
|
2022-04-12 08:49:49 -06:00
|
|
|
"eslint-plugin-jest-formatting": "3.1.0",
|
2024-08-14 01:53:43 -06:00
|
|
|
"eslint-plugin-promise": "7.1.0",
|
2022-01-21 07:33:23 -07:00
|
|
|
"eslint-plugin-typescript-enum": "2.1.0",
|
2023-09-19 01:52:57 -06:00
|
|
|
"expect": "29.7.0",
|
2023-02-07 18:51:14 -07:00
|
|
|
"expect-more-jest": "5.5.0",
|
2024-06-28 09:13:18 -06:00
|
|
|
"graphql": "16.9.0",
|
2024-09-18 18:06:22 -06:00
|
|
|
"husky": "9.1.6",
|
2023-09-19 01:52:57 -06:00
|
|
|
"jest": "29.7.0",
|
2023-10-16 21:12:32 -06:00
|
|
|
"jest-extended": "4.0.2",
|
2023-09-19 01:52:57 -06:00
|
|
|
"jest-mock": "29.7.0",
|
2024-05-09 04:18:42 -06:00
|
|
|
"jest-mock-extended": "3.0.7",
|
2023-09-19 01:52:57 -06:00
|
|
|
"jest-snapshot": "29.7.0",
|
2024-09-13 00:06:41 -06:00
|
|
|
"markdownlint-cli2": "0.14.0",
|
2024-10-20 12:59:55 -06:00
|
|
|
"memfs": "4.14.0",
|
2024-08-27 04:14:38 -06:00
|
|
|
"nock": "13.5.5",
|
2024-11-04 07:47:50 -07:00
|
|
|
"npm-run-all2": "7.0.1",
|
2024-09-27 01:04:34 -06:00
|
|
|
"nyc": "17.1.0",
|
2023-09-19 01:52:57 -06:00
|
|
|
"pretty-format": "29.7.0",
|
2024-08-01 11:00:34 -06:00
|
|
|
"rimraf": "6.0.1",
|
2024-11-01 13:55:47 -06:00
|
|
|
"semantic-release": "24.2.0",
|
2024-08-15 03:43:34 -06:00
|
|
|
"tar": "7.4.3",
|
2021-11-02 09:21:31 -06:00
|
|
|
"tmp-promise": "3.0.3",
|
2024-08-30 10:10:43 -06:00
|
|
|
"ts-jest": "29.2.5",
|
2023-12-15 05:23:15 -07:00
|
|
|
"ts-node": "10.9.2",
|
2024-09-14 23:11:56 -06:00
|
|
|
"type-fest": "4.26.1",
|
2024-10-15 17:13:09 -06:00
|
|
|
"typescript": "5.6.3",
|
2021-07-15 02:17:00 -06:00
|
|
|
"unified": "9.2.2"
|
2017-01-31 04:19:06 -07:00
|
|
|
},
|
2024-11-03 20:32:31 -07:00
|
|
|
"packageManager": "pnpm@9.12.3",
|
2017-09-30 23:20:21 -06:00
|
|
|
"files": [
|
2022-08-18 02:41:31 -06:00
|
|
|
"dist",
|
|
|
|
"renovate-schema.json"
|
2024-03-11 22:55:00 -06:00
|
|
|
],
|
2024-04-22 05:35:15 -06:00
|
|
|
"pnpm": {
|
2024-07-31 10:12:50 -06:00
|
|
|
"ignoredOptionalDependencies": [
|
|
|
|
"dtrace-provider",
|
|
|
|
"moment",
|
|
|
|
"mv",
|
|
|
|
"safe-json-stringify"
|
|
|
|
],
|
2024-05-07 00:30:07 -06:00
|
|
|
"overrides": {
|
2024-10-09 03:47:45 -06:00
|
|
|
"@semantic-release/github>@octokit/plugin-paginate-rest": "11.3.5"
|
2024-05-07 00:30:07 -06:00
|
|
|
}
|
2024-03-11 22:55:00 -06:00
|
|
|
}
|
2016-12-17 23:51:25 -07:00
|
|
|
}
|