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