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",
|
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": {
|
2022-08-18 08:41:31 +00:00
|
|
|
"build": "run-s clean generate:* compile:* create-json-schema",
|
2022-02-11 07:51:51 +00:00
|
|
|
"build:docs": "run-s \"release:prepare {@}\" --",
|
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",
|
2021-03-02 16:16:05 +00:00
|
|
|
"config-validator": "node -r ts-node/register/transpile-only -- lib/config-validator.ts",
|
2022-06-22 09:16:08 +00:00
|
|
|
"create-json-schema": "node -r ts-node/register/transpile-only -- tools/generate-schema.ts && prettier --write --cache \"renovate-schema.json\"",
|
2021-03-02 16:16:05 +00:00
|
|
|
"debug": "node --inspect-brk -r ts-node/register/transpile-only -- lib/renovate.ts",
|
2021-05-07 19:58:21 +00:00
|
|
|
"doc-fix": "run-s markdown-lint-fix prettier-fix",
|
2021-11-11 10:11:55 +00:00
|
|
|
"doc-fence-check": "node tools/check-fenced-code.mjs",
|
2022-06-20 14:36:10 +00:00
|
|
|
"eslint": "eslint . --cache --report-unused-disable-directives",
|
|
|
|
"eslint-fix": "eslint --cache --fix . --report-unused-disable-directives",
|
2021-05-07 19:58:21 +00:00
|
|
|
"generate": "run-s generate:*",
|
|
|
|
"generate:imports": "node tools/generate-imports.mjs",
|
2021-09-15 15:04:17 +00:00
|
|
|
"git-check": "node tools/check-git-version.mjs",
|
2022-08-16 12:22:29 +00:00
|
|
|
"jest": "cross-env LOG_LEVEL=fatal jest --logHeapUsage",
|
|
|
|
"jest:14": "run-s \"jest {@}\" --",
|
|
|
|
"jest:16": "run-s \"jest {@}\" --",
|
2021-10-28 09:21:03 +00:00
|
|
|
"jest-debug": "cross-env NODE_OPTIONS=--inspect-brk yarn jest --testTimeout=100000000",
|
2021-05-28 08:49:27 +00:00
|
|
|
"jest-silent": "cross-env yarn jest --reporters jest-silent-reporter",
|
2021-11-11 10:11:55 +00:00
|
|
|
"lint": "run-s ls-lint 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",
|
|
|
|
"markdown-lint-fix": "markdownlint-cli2-fix",
|
2022-06-21 11:00:21 +00:00
|
|
|
"strict-check": "run-s generate:* \"tsc --noEmit -p tsconfig.strict.json {@}\" --",
|
2020-03-06 08:31:47 +00:00
|
|
|
"prepare": "run-s prepare:*",
|
2021-05-26 07:25:08 +00:00
|
|
|
"prepare:husky": "husky install",
|
2020-03-24 06:17:59 +00:00
|
|
|
"prepare:generate": "run-s generate:*",
|
2022-06-20 08:21:44 +00:00
|
|
|
"prepare:install-re2": "npm explore re2 -- npm run install",
|
2021-05-07 19:58:21 +00:00
|
|
|
"prepare:re2": "node tools/check-re2.mjs",
|
2020-03-24 06:17:59 +00:00
|
|
|
"prestart": "run-s generate:* ",
|
|
|
|
"pretest": "run-s generate:* ",
|
2022-06-22 09:16:08 +00:00
|
|
|
"prettier": "prettier --cache --check \"**/*.{ts,js,mjs,json,md,yml}\"",
|
|
|
|
"prettier-fix": "prettier --write --cache \"**/*.{ts,js,mjs,json,md,yml}\"",
|
2021-12-09 20:12:49 +00:00
|
|
|
"release:prepare": "node -r ts-node/register/transpile-only -- tools/generate-docs.ts",
|
|
|
|
"release:publish": "node tools/release.mjs",
|
2021-03-02 16:16:05 +00:00
|
|
|
"start": "node -r ts-node/register/transpile-only -- lib/renovate.ts",
|
2022-06-21 11:00:21 +00:00
|
|
|
"test": "run-s lint test-schema type-check strict-check jest",
|
2017-06-04 04:34:41 +00:00
|
|
|
"test-dirty": "git diff --exit-code",
|
2022-06-27 20:23:24 +00:00
|
|
|
"test-e2e": "yarn pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
|
2022-02-11 07:51:51 +00:00
|
|
|
"test-schema": "run-s create-json-schema",
|
2020-03-24 06:17:59 +00:00
|
|
|
"tsc": "tsc",
|
2022-02-11 07:51:51 +00:00
|
|
|
"type-check": "run-s generate:* \"tsc --noEmit {@}\" --",
|
2022-08-09 18:34:08 +00:00
|
|
|
"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",
|
|
|
|
"update-static-data:azure-pipelines-tasks": "node tools/static-data/generate-azure-pipelines-tasks.mjs",
|
|
|
|
"update-static-data:node-schedule": "node tools/static-data/generate-node-schedule.mjs",
|
2021-05-07 15:46:25 +00:00
|
|
|
"verify": "node tools/verify.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",
|
2018-12-12 11:05:40 +00:00
|
|
|
"bazel",
|
|
|
|
"bitbucket",
|
|
|
|
"buildkite",
|
|
|
|
"dependencies",
|
2018-03-30 19:19:30 +00:00
|
|
|
"dependency",
|
|
|
|
"docker",
|
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",
|
|
|
|
"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": [
|
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
|
|
|
],
|
2018-04-09 05:08:03 +00:00
|
|
|
"license": "AGPL-3.0",
|
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": {
|
2021-12-09 12:44:42 +00:00
|
|
|
"node": "^14.15.0 || >=16.13.0",
|
2020-05-16 09:45:12 +00:00
|
|
|
"yarn": "^1.17.0"
|
2017-01-11 18:32:45 +00:00
|
|
|
},
|
2021-03-05 09:59:07 +00:00
|
|
|
"engines-next": {
|
|
|
|
"description": "Versions other than the below are deprecated and a warning will be logged",
|
2021-12-09 12:44:42 +00:00
|
|
|
"node": "^14.15.0 || >=16.13.0"
|
2021-03-05 09:59:07 +00:00
|
|
|
},
|
2016-12-18 06:51:25 +00:00
|
|
|
"dependencies": {
|
2022-08-30 10:47:16 +00:00
|
|
|
"@aws-sdk/client-ec2": "3.155.0",
|
2022-08-29 12:48:32 +00:00
|
|
|
"@aws-sdk/client-ecr": "3.154.0",
|
|
|
|
"@aws-sdk/client-rds": "3.154.0",
|
|
|
|
"@aws-sdk/client-s3": "3.154.0",
|
2021-11-03 00:10:17 +00:00
|
|
|
"@breejs/later": "4.1.0",
|
2022-01-18 19:52:28 +00:00
|
|
|
"@cheap-glitch/mi-cron": "1.0.1",
|
2020-10-27 08:57:53 +00:00
|
|
|
"@iarna/toml": "2.2.5",
|
2022-08-22 22:37:22 +00:00
|
|
|
"@jamiemagee/osv-offline": "1.2.11",
|
2022-08-30 16:03:18 +00:00
|
|
|
"@renovatebot/pep440": "2.1.5",
|
2022-08-30 20:32:28 +00:00
|
|
|
"@renovatebot/ruby-semver": "1.1.6",
|
2022-03-06 10:19:18 +00:00
|
|
|
"@sindresorhus/is": "4.6.0",
|
2022-06-19 14:14:55 +00:00
|
|
|
"@types/tmp": "0.2.3",
|
2022-08-19 13:13:56 +00:00
|
|
|
"@yarnpkg/core": "3.2.3",
|
2022-05-20 11:22:38 +00:00
|
|
|
"@yarnpkg/parsers": "2.5.1",
|
2021-10-01 19:50:27 +00:00
|
|
|
"auth-header": "1.0.0",
|
2022-07-15 19:03:58 +00:00
|
|
|
"azure-devops-node-api": "11.2.0",
|
2021-01-16 02:01:21 +00:00
|
|
|
"bunyan": "1.8.15",
|
2022-08-30 20:45:01 +00:00
|
|
|
"cacache": "16.1.3",
|
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",
|
2022-07-22 11:23:53 +00:00
|
|
|
"commander": "9.4.0",
|
2020-10-23 08:33:25 +00:00
|
|
|
"conventional-commits-detector": "1.0.3",
|
2021-02-19 13:08:06 +00:00
|
|
|
"crypto-random-string": "3.3.1",
|
2019-10-31 17:00:57 +00:00
|
|
|
"deepmerge": "4.2.2",
|
2021-02-13 07:19:11 +00:00
|
|
|
"delay": "5.0.0",
|
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",
|
2021-11-05 13:25:50 +00:00
|
|
|
"editorconfig": "0.15.3",
|
2021-09-02 14:29:54 +00:00
|
|
|
"email-addresses": "5.0.0",
|
2022-04-08 13:34:09 +00:00
|
|
|
"emoji-regex": "10.1.0",
|
2021-12-26 23:27:46 +00:00
|
|
|
"emojibase": "6.1.0",
|
|
|
|
"emojibase-regex": "6.0.1",
|
2021-08-27 13:58:50 +00:00
|
|
|
"extract-zip": "2.0.1",
|
2022-08-10 16:59:13 +00:00
|
|
|
"find-packages": "9.0.9",
|
2020-08-25 13:06:06 +00:00
|
|
|
"find-up": "5.0.0",
|
2022-04-23 21:08:05 +00:00
|
|
|
"fs-extra": "10.1.0",
|
2022-07-11 19:37:56 +00:00
|
|
|
"git-url-parse": "12.0.0",
|
2017-06-27 15:35:23 +00:00
|
|
|
"github-url-from-git": "1.5.0",
|
2021-12-23 10:00:48 +00:00
|
|
|
"global-agent": "3.0.0",
|
2022-08-09 18:53:10 +00:00
|
|
|
"good-enough-parser": "1.1.18",
|
2022-06-01 19:19:32 +00:00
|
|
|
"got": "11.8.5",
|
2022-04-07 21:45:24 +00:00
|
|
|
"graph-data-structure": "2.0.0",
|
2021-02-22 22:24:57 +00:00
|
|
|
"handlebars": "4.7.7",
|
2020-10-12 03:00:39 +00:00
|
|
|
"hasha": "5.2.2",
|
2021-12-26 04:26:24 +00:00
|
|
|
"ignore": "5.2.0",
|
2022-08-29 23:47:37 +00:00
|
|
|
"ini": "3.0.1",
|
2021-05-26 13:01:09 +00:00
|
|
|
"js-yaml": "4.1.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",
|
2022-03-28 17:47:55 +00:00
|
|
|
"json5": "2.2.1",
|
2022-08-19 12:59:14 +00:00
|
|
|
"luxon": "3.0.1",
|
2022-05-10 16:13:55 +00:00
|
|
|
"markdown-it": "13.0.1",
|
2020-07-22 05:33:08 +00:00
|
|
|
"markdown-table": "2.0.0",
|
2022-04-18 06:20:37 +00:00
|
|
|
"marshal": "0.5.4",
|
2022-05-23 18:18:26 +00:00
|
|
|
"minimatch": "5.1.0",
|
2020-12-08 12:56:08 +00:00
|
|
|
"moo": "0.5.1",
|
2022-05-10 13:53:09 +00:00
|
|
|
"nanoid": "3.3.4",
|
2022-08-17 04:54:02 +00:00
|
|
|
"node-html-parser": "5.4.1",
|
2022-08-15 13:53:44 +00:00
|
|
|
"openpgp": "5.4.0",
|
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-01-13 05:45:50 +00:00
|
|
|
"parse-link-header": "2.0.0",
|
2022-07-14 06:05:31 +00:00
|
|
|
"prettier": "2.7.1",
|
2022-08-30 03:28:22 +00:00
|
|
|
"redis": "4.3.0",
|
2021-05-19 03:23:59 +00:00
|
|
|
"remark": "13.0.0",
|
|
|
|
"remark-github": "10.1.0",
|
2022-08-19 13:58:11 +00:00
|
|
|
"safe-stable-stringify": "2.3.1",
|
2022-04-19 20:44:24 +00:00
|
|
|
"semver": "7.3.7",
|
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",
|
2022-08-29 12:01:15 +00:00
|
|
|
"simple-git": "3.13.0",
|
2022-01-10 16:48:50 +00:00
|
|
|
"slugify": "1.6.5",
|
2017-09-14 15:57:17 +00:00
|
|
|
"traverse": "0.6.6",
|
2022-04-29 02:43:33 +00:00
|
|
|
"tslib": "2.4.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",
|
2022-04-04 09:40:16 +00:00
|
|
|
"validate-npm-package-name": "4.0.0",
|
2022-07-21 22:43:28 +00:00
|
|
|
"xmldoc": "1.2.0"
|
2017-01-10 21:28:22 +00:00
|
|
|
},
|
2019-08-25 12:29:51 +00:00
|
|
|
"optionalDependencies": {
|
2022-06-19 17:52:30 +00:00
|
|
|
"re2": "1.17.7"
|
2019-08-25 12:29:51 +00:00
|
|
|
},
|
2017-01-10 21:28:22 +00:00
|
|
|
"devDependencies": {
|
2022-08-15 19:17:29 +00:00
|
|
|
"@actions/core": "1.9.1",
|
2022-08-29 16:07:13 +00:00
|
|
|
"@jest/globals": "29.0.1",
|
|
|
|
"@jest/reporters": "29.0.1",
|
|
|
|
"@jest/test-result": "29.0.1",
|
2022-06-06 12:05:02 +00:00
|
|
|
"@ls-lint/ls-lint": "1.11.2",
|
2022-07-06 18:03:51 +00:00
|
|
|
"@openpgp/web-stream-tools": "0.0.11",
|
2021-11-17 17:16:52 +00:00
|
|
|
"@renovate/eslint-plugin": "https://github.com/renovatebot/eslint-plugin#v0.0.4",
|
2021-12-22 20:40:00 +00:00
|
|
|
"@semantic-release/exec": "6.0.3",
|
2021-10-01 19:50:27 +00:00
|
|
|
"@types/auth-header": "1.0.2",
|
2021-11-24 16:52:50 +00:00
|
|
|
"@types/bunyan": "1.8.8",
|
2021-07-13 21:48:25 +00:00
|
|
|
"@types/cacache": "15.0.1",
|
2022-01-23 21:23:54 +00:00
|
|
|
"@types/callsite": "1.0.31",
|
2020-07-07 11:52:59 +00:00
|
|
|
"@types/changelog-filename-regex": "2.0.0",
|
2020-01-30 06:13:05 +00:00
|
|
|
"@types/clean-git-ref": "2.0.0",
|
2020-06-29 09:01:05 +00:00
|
|
|
"@types/conventional-commits-detector": "1.0.0",
|
2022-05-10 10:13:09 +00:00
|
|
|
"@types/diff": "5.0.2",
|
2022-08-26 06:14:45 +00:00
|
|
|
"@types/eslint": "8.4.6",
|
2021-09-28 21:31:15 +00:00
|
|
|
"@types/fs-extra": "9.0.13",
|
2021-07-14 01:16:25 +00:00
|
|
|
"@types/git-url-parse": "9.0.1",
|
2021-07-15 14:17:55 +00:00
|
|
|
"@types/github-url-from-git": "1.5.1",
|
2021-07-15 14:06:31 +00:00
|
|
|
"@types/global-agent": "2.1.1",
|
2021-10-15 00:18:25 +00:00
|
|
|
"@types/ini": "1.3.31",
|
2022-08-23 02:23:17 +00:00
|
|
|
"@types/jest": "28.1.7",
|
2021-11-26 19:56:34 +00:00
|
|
|
"@types/js-yaml": "4.0.5",
|
2020-06-29 13:50:44 +00:00
|
|
|
"@types/json-dup-key-validator": "1.0.0",
|
2021-07-15 19:35:00 +00:00
|
|
|
"@types/linkify-markdown": "1.0.1",
|
2022-08-19 13:13:56 +00:00
|
|
|
"@types/lodash": "4.14.184",
|
2022-08-19 12:59:14 +00:00
|
|
|
"@types/luxon": "3.0.0",
|
2021-10-14 20:27:51 +00:00
|
|
|
"@types/markdown-it": "12.2.3",
|
2020-05-07 08:23:45 +00:00
|
|
|
"@types/markdown-table": "2.0.0",
|
2021-10-28 17:00:42 +00:00
|
|
|
"@types/marshal": "0.5.1",
|
2021-07-15 20:29:40 +00:00
|
|
|
"@types/moo": "0.5.5",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/nock": "10.0.3",
|
2022-08-31 04:04:04 +00:00
|
|
|
"@types/node": "16.11.56",
|
2022-04-04 09:23:20 +00:00
|
|
|
"@types/parse-link-header": "2.0.0",
|
2022-08-18 22:20:36 +00:00
|
|
|
"@types/semver": "7.3.12",
|
2020-01-22 14:14:04 +00:00
|
|
|
"@types/semver-stable": "3.0.0",
|
2021-07-14 10:29:32 +00:00
|
|
|
"@types/semver-utils": "1.1.1",
|
2022-01-20 05:15:09 +00:00
|
|
|
"@types/shelljs": "0.8.11",
|
2019-11-29 13:11:53 +00:00
|
|
|
"@types/traverse": "0.6.32",
|
2021-07-16 04:16:08 +00:00
|
|
|
"@types/url-join": "4.0.1",
|
2022-07-07 05:58:26 +00:00
|
|
|
"@types/validate-npm-package-name": "4.0.0",
|
2021-07-09 20:10:52 +00:00
|
|
|
"@types/xmldoc": "1.1.6",
|
2022-08-30 16:15:56 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.34.0",
|
|
|
|
"@typescript-eslint/parser": "5.34.0",
|
2022-06-17 04:12:08 +00:00
|
|
|
"aws-sdk-client-mock": "1.0.0",
|
2022-01-23 21:23:54 +00:00
|
|
|
"callsite": "1.0.0",
|
2022-06-13 10:14:50 +00:00
|
|
|
"conventional-changelog-conventionalcommits": "5.0.0",
|
2020-12-09 07:40:26 +00:00
|
|
|
"cross-env": "7.0.3",
|
2022-05-30 03:14:09 +00:00
|
|
|
"diff": "5.1.0",
|
2021-12-26 23:27:46 +00:00
|
|
|
"emojibase-data": "7.0.1",
|
2022-08-21 02:51:26 +00:00
|
|
|
"eslint": "8.22.0",
|
2022-03-17 11:34:00 +00:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
2021-12-25 20:00:39 +00:00
|
|
|
"eslint-formatter-gha": "1.4.1",
|
2022-08-29 16:35:13 +00:00
|
|
|
"eslint-import-resolver-typescript": "3.5.0",
|
2022-04-12 21:46:56 +00:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-08-29 12:33:19 +00:00
|
|
|
"eslint-plugin-jest": "27.0.1",
|
2022-04-12 14:49:49 +00:00
|
|
|
"eslint-plugin-jest-formatting": "3.1.0",
|
2021-12-23 09:32:04 +00:00
|
|
|
"eslint-plugin-promise": "6.0.0",
|
2022-01-21 14:33:23 +00:00
|
|
|
"eslint-plugin-typescript-enum": "2.1.0",
|
2022-06-11 16:29:28 +00:00
|
|
|
"expect-more-jest": "5.4.1",
|
2022-05-20 17:48:29 +00:00
|
|
|
"glob": "8.0.3",
|
2022-08-23 22:01:18 +00:00
|
|
|
"graphql": "16.6.0",
|
2022-06-13 18:13:03 +00:00
|
|
|
"husky": "8.0.1",
|
2022-08-29 16:07:13 +00:00
|
|
|
"jest": "29.0.1",
|
2022-08-11 11:06:08 +00:00
|
|
|
"jest-extended": "3.0.2",
|
2022-07-07 05:28:24 +00:00
|
|
|
"jest-junit": "14.0.0",
|
2022-05-16 11:25:31 +00:00
|
|
|
"jest-mock-extended": "2.0.6",
|
2021-03-17 18:26:27 +00:00
|
|
|
"jest-silent-reporter": "0.5.0",
|
2022-08-24 05:16:46 +00:00
|
|
|
"markdownlint-cli2": "0.5.1",
|
2022-07-02 05:08:36 +00:00
|
|
|
"memfs": "3.4.7",
|
2022-08-11 05:42:58 +00:00
|
|
|
"mock-fs": "5.1.4",
|
2021-04-02 00:07:59 +00:00
|
|
|
"mockdate": "3.0.5",
|
2022-07-26 19:52:28 +00:00
|
|
|
"nock": "13.2.9",
|
2019-05-21 15:23:30 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2021-12-29 08:18:12 +00:00
|
|
|
"pretty-quick": "3.1.3",
|
2020-02-12 07:01:13 +00:00
|
|
|
"rimraf": "3.0.2",
|
2022-08-30 15:47:53 +00:00
|
|
|
"semantic-release": "19.0.5",
|
2022-01-14 09:50:35 +00:00
|
|
|
"shelljs": "0.8.5",
|
2021-09-30 19:00:37 +00:00
|
|
|
"strip-ansi": "6.0.1",
|
2021-11-02 15:21:31 +00:00
|
|
|
"tmp-promise": "3.0.3",
|
2022-08-29 16:07:13 +00:00
|
|
|
"ts-jest": "29.0.0-next.0",
|
2022-07-24 07:23:36 +00:00
|
|
|
"ts-node": "10.9.1",
|
2022-08-30 03:14:52 +00:00
|
|
|
"type-fest": "2.19.0",
|
2022-06-24 18:42:52 +00:00
|
|
|
"typescript": "4.7.4",
|
2021-07-15 08:17:00 +00:00
|
|
|
"unified": "9.2.2"
|
2017-01-31 11:19:06 +00:00
|
|
|
},
|
2019-03-04 04:40:57 +00:00
|
|
|
"resolutions": {
|
2022-08-29 16:07:13 +00:00
|
|
|
"@types/jest/pretty-format": "^29.0.0",
|
2022-08-19 13:13:56 +00:00
|
|
|
"@yarnpkg/core/clipanion": "3.2.0-rc.4"
|
2019-03-04 04:40:57 +00:00
|
|
|
},
|
2017-10-01 05:20:21 +00:00
|
|
|
"files": [
|
2022-08-18 08:41:31 +00:00
|
|
|
"dist",
|
|
|
|
"renovate-schema.json"
|
2021-05-26 07:25:08 +00:00
|
|
|
]
|
2016-12-18 06:51:25 +00:00
|
|
|
}
|