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": {
|
2020-04-09 16:28:36 +00:00
|
|
|
"build": "run-s clean generate:* compile:*",
|
2020-04-02 04:01:31 +00:00
|
|
|
"clean": "rimraf dist",
|
2017-11-13 16:44:09 +00:00
|
|
|
"clean-cache": "node bin/clean-cache.js",
|
2019-07-23 08:34:02 +00:00
|
|
|
"compile:ts": "tsc -p tsconfig.app.json",
|
|
|
|
"compile:dts": "tsc -p tsconfig.dts.json",
|
2021-02-03 09:35:30 +00:00
|
|
|
"config-validator": "babel-node --extensions \".ts,.js\" -- lib/config-validator.ts",
|
2020-03-24 06:17:59 +00:00
|
|
|
"generate": "run-s generate:*",
|
2020-04-06 17:38:20 +00:00
|
|
|
"generate:imports": "node tmp/tools/generate-imports.js",
|
2019-08-24 04:47:11 +00:00
|
|
|
"create-json-schema": "babel-node --extensions \".ts,.js\" -- bin/create-json-schema.js && prettier --write \"renovate-schema.json\"",
|
2019-05-28 09:21:17 +00:00
|
|
|
"debug": "babel-node --inspect-brk --extensions \".ts,.js\" -- lib/renovate.ts",
|
2020-03-06 08:31:47 +00:00
|
|
|
"eslint": "eslint --ext .js,.mjs,.ts lib/ test/ tools/",
|
|
|
|
"eslint-fix": "eslint --ext .js,.mjs,.ts --fix lib/ test/ tools/",
|
2020-02-21 18:29:55 +00:00
|
|
|
"jest": "cross-env NODE_ENV=test LOG_LEVEL=fatal node --expose-gc node_modules/jest/bin/jest.js",
|
|
|
|
"jest-debug": "cross-env NODE_ENV=test LOG_LEVEL=fatal node --expose-gc --inspect-brk node_modules/jest/bin/jest.js",
|
2019-07-13 06:09:01 +00:00
|
|
|
"jest-silent": "cross-env NODE_ENV=test yarn jest --reporters jest-silent-reporter",
|
2020-12-11 12:29:43 +00:00
|
|
|
"lint": "run-s ls-lint eslint prettier",
|
2019-07-17 08:14:56 +00:00
|
|
|
"lint-fix": "run-s eslint-fix prettier-fix",
|
2020-12-11 12:29:43 +00:00
|
|
|
"ls-lint": "ls-lint",
|
2020-03-06 08:31:47 +00:00
|
|
|
"prepare": "run-s prepare:*",
|
2020-04-02 04:01:31 +00:00
|
|
|
"prepare:tools": "tsc -p tools",
|
2020-03-06 08:31:47 +00:00
|
|
|
"prepare:re2": "node --experimental-modules tools/check-re2.mjs",
|
2020-03-24 06:17:59 +00:00
|
|
|
"prepare:generate": "run-s generate:*",
|
|
|
|
"prestart": "run-s generate:* ",
|
|
|
|
"pretest": "run-s generate:* ",
|
2021-01-30 10:11:11 +00:00
|
|
|
"prettier": "prettier --check \"**/*.{ts,js,mjs,json,md}\"",
|
2020-03-06 08:31:47 +00:00
|
|
|
"prettier-fix": "prettier --write \"**/*.{ts,js,mjs,json,md}\"",
|
2020-03-28 13:43:35 +00:00
|
|
|
"release": "node --experimental-modules tools/release.mjs",
|
2019-05-28 09:21:17 +00:00
|
|
|
"start": "babel-node --extensions \".ts,.js\" -- lib/renovate.ts",
|
2017-06-04 04:34:41 +00:00
|
|
|
"test-dirty": "git diff --exit-code",
|
2020-06-22 19:57:17 +00:00
|
|
|
"test-e2e": "npm pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
|
2019-07-19 06:18:38 +00:00
|
|
|
"test-schema": "babel-node --extensions \".ts,.js\" -- test/json-schema.ts",
|
2019-07-17 08:14:56 +00:00
|
|
|
"test": "run-s lint test-schema type-check jest",
|
2020-03-24 06:17:59 +00:00
|
|
|
"tsc": "tsc",
|
2020-05-07 08:23:45 +00:00
|
|
|
"type-check": "run-s generate:* \"tsc --noEmit {@}\"",
|
2020-03-28 11:51:32 +00:00
|
|
|
"verify": "node --experimental-modules 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>",
|
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>",
|
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>",
|
|
|
|
"Henry Sachs <henrysachs@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": {
|
2020-10-29 10:41:01 +00:00
|
|
|
"node": "^12.13.0 || >=14.15.0",
|
2020-05-16 09:45:12 +00:00
|
|
|
"yarn": "^1.17.0"
|
2017-01-11 18:32:45 +00:00
|
|
|
},
|
2016-12-18 06:51:25 +00:00
|
|
|
"dependencies": {
|
2021-02-06 07:09:32 +00:00
|
|
|
"@aws-sdk/client-ecr": "3.4.1",
|
2020-10-27 12:23:21 +00:00
|
|
|
"@breejs/later": "4.0.2",
|
2020-10-27 08:57:53 +00:00
|
|
|
"@iarna/toml": "2.2.5",
|
2019-01-07 05:57:45 +00:00
|
|
|
"@renovate/pep440": "0.4.1",
|
2020-07-16 13:30:05 +00:00
|
|
|
"@renovatebot/ruby-semver": "0.2.1",
|
2020-10-16 09:21:04 +00:00
|
|
|
"@sindresorhus/is": "4.0.0",
|
2020-12-07 16:00:53 +00:00
|
|
|
"@yarnpkg/core": "2.4.0",
|
2020-10-10 19:00:39 +00:00
|
|
|
"@yarnpkg/parsers": "2.3.0",
|
2021-01-19 14:54:46 +00:00
|
|
|
"azure-devops-node-api": "10.2.1",
|
2021-01-16 02:01:21 +00:00
|
|
|
"bunyan": "1.8.15",
|
2020-07-14 04:00:32 +00:00
|
|
|
"cacache": "15.0.5",
|
2020-06-12 09:00:48 +00:00
|
|
|
"chalk": "4.1.0",
|
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",
|
2020-12-21 02:00:54 +00:00
|
|
|
"commander": "6.2.1",
|
2020-10-23 08:33:25 +00:00
|
|
|
"conventional-commits-detector": "1.0.3",
|
2020-11-22 12:39:50 +00:00
|
|
|
"crypto-random-string": "3.3.0",
|
2019-10-31 17:00:57 +00:00
|
|
|
"deepmerge": "4.2.2",
|
2021-02-06 10:50:56 +00:00
|
|
|
"delay": "4.4.1",
|
2019-06-03 20:33:08 +00:00
|
|
|
"detect-indent": "6.0.0",
|
2019-10-27 17:11:39 +00:00
|
|
|
"email-addresses": "3.1.0",
|
2020-06-26 09:31:23 +00:00
|
|
|
"fast-deep-equal": "3.1.3",
|
2020-04-06 10:55:34 +00:00
|
|
|
"fast-safe-stringify": "2.0.7",
|
2020-08-25 13:06:06 +00:00
|
|
|
"find-up": "5.0.0",
|
2021-01-26 19:20:57 +00:00
|
|
|
"fs-extra": "9.1.0",
|
2021-02-04 15:20:14 +00:00
|
|
|
"git-url-parse": "11.4.4",
|
2017-06-27 15:35:23 +00:00
|
|
|
"github-url-from-git": "1.5.0",
|
2020-06-18 22:21:55 +00:00
|
|
|
"global-agent": "2.1.12",
|
2020-12-17 15:00:45 +00:00
|
|
|
"got": "11.8.1",
|
2020-04-07 05:27:57 +00:00
|
|
|
"handlebars": "4.7.6",
|
2021-01-12 02:01:10 +00:00
|
|
|
"handy-redis": "2.2.1",
|
2020-10-12 03:00:39 +00:00
|
|
|
"hasha": "5.2.2",
|
2020-06-02 05:13:14 +00:00
|
|
|
"ignore": "5.1.8",
|
2020-12-18 21:58:16 +00:00
|
|
|
"ini": "1.3.8",
|
2020-12-14 23:00:51 +00:00
|
|
|
"js-yaml": "3.14.1",
|
2020-09-08 10:26:17 +00:00
|
|
|
"jsdom": "16.4.0",
|
2017-07-06 12:09:35 +00:00
|
|
|
"json-dup-key-validator": "1.0.2",
|
2019-03-07 09:48:15 +00:00
|
|
|
"json-stringify-pretty-compact": "2.0.0",
|
2021-02-05 10:48:47 +00:00
|
|
|
"json5": "2.2.0",
|
2018-07-26 15:13:01 +00:00
|
|
|
"linkify-markdown": "1.0.0",
|
2020-08-26 05:07:36 +00:00
|
|
|
"luxon": "1.25.0",
|
2020-12-15 00:00:50 +00:00
|
|
|
"markdown-it": "12.0.3",
|
2020-07-22 05:33:08 +00:00
|
|
|
"markdown-table": "2.0.0",
|
2017-09-12 05:49:56 +00:00
|
|
|
"minimatch": "3.0.4",
|
2020-12-08 12:56:08 +00:00
|
|
|
"moo": "0.5.1",
|
2019-09-25 09:40:16 +00:00
|
|
|
"node-emoji": "1.10.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",
|
2020-09-14 15:00:37 +00:00
|
|
|
"parse-diff": "0.7.1",
|
2017-10-17 18:44:40 +00:00
|
|
|
"parse-link-header": "1.0.1",
|
2020-10-27 13:34:04 +00:00
|
|
|
"redis": "3.0.2",
|
2020-11-17 16:00:51 +00:00
|
|
|
"registry-auth-token": "4.2.1",
|
2020-12-09 10:00:55 +00:00
|
|
|
"semver": "7.3.4",
|
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",
|
2020-05-11 15:49:38 +00:00
|
|
|
"shlex": "2.0.2",
|
2020-10-25 00:01:02 +00:00
|
|
|
"shortid": "2.2.16",
|
2020-12-30 16:27:57 +00:00
|
|
|
"simple-git": "2.31.0",
|
2020-11-07 17:00:48 +00:00
|
|
|
"slugify": "1.4.6",
|
2017-09-14 15:57:17 +00:00
|
|
|
"traverse": "0.6.6",
|
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",
|
2019-01-27 07:36:14 +00:00
|
|
|
"validate-npm-package-name": "3.0.0",
|
2018-07-26 14:25:44 +00:00
|
|
|
"www-authenticate": "0.6.2",
|
2020-06-12 15:27:39 +00:00
|
|
|
"xmldoc": "1.1.2"
|
2017-01-10 21:28:22 +00:00
|
|
|
},
|
2019-08-25 12:29:51 +00:00
|
|
|
"optionalDependencies": {
|
2020-11-20 07:40:44 +00:00
|
|
|
"re2": "1.15.9"
|
2019-08-25 12:29:51 +00:00
|
|
|
},
|
2017-01-10 21:28:22 +00:00
|
|
|
"devDependencies": {
|
2020-09-24 18:41:30 +00:00
|
|
|
"@actions/core": "1.2.6",
|
2020-12-23 01:00:59 +00:00
|
|
|
"@babel/cli": "7.12.10",
|
|
|
|
"@babel/core": "7.12.10",
|
|
|
|
"@babel/node": "7.12.10",
|
2020-10-20 00:00:48 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.12.1",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
|
2020-01-16 21:55:54 +00:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
2020-12-23 01:00:59 +00:00
|
|
|
"@babel/preset-env": "7.12.11",
|
2020-12-02 00:00:51 +00:00
|
|
|
"@babel/preset-typescript": "7.12.7",
|
2020-11-11 09:00:52 +00:00
|
|
|
"@jest/globals": "26.6.2",
|
|
|
|
"@jest/reporters": "26.6.2",
|
|
|
|
"@jest/test-result": "26.6.2",
|
2020-12-12 14:06:32 +00:00
|
|
|
"@ls-lint/ls-lint": "1.9.2",
|
2020-02-19 14:13:17 +00:00
|
|
|
"@semantic-release/exec": "5.0.0",
|
2019-04-26 10:59:51 +00:00
|
|
|
"@types/bunyan": "1.8.6",
|
2019-11-26 13:05:25 +00:00
|
|
|
"@types/cacache": "12.0.1",
|
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",
|
2020-12-09 12:00:49 +00:00
|
|
|
"@types/eslint": "7.2.6",
|
2020-12-30 23:01:02 +00:00
|
|
|
"@types/fs-extra": "9.0.6",
|
2020-12-30 21:32:09 +00:00
|
|
|
"@types/git-url-parse": "9.0.0",
|
2019-09-26 17:56:31 +00:00
|
|
|
"@types/github-url-from-git": "1.5.0",
|
2020-01-30 06:36:43 +00:00
|
|
|
"@types/global-agent": "2.1.0",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/ini": "1.3.30",
|
2021-01-14 11:01:15 +00:00
|
|
|
"@types/jest": "26.0.20",
|
2021-01-13 02:01:08 +00:00
|
|
|
"@types/js-yaml": "3.12.6",
|
2021-01-19 23:43:20 +00:00
|
|
|
"@types/jsdom": "16.2.6",
|
2020-06-29 13:50:44 +00:00
|
|
|
"@types/json-dup-key-validator": "1.0.0",
|
2020-07-07 11:52:59 +00:00
|
|
|
"@types/linkify-markdown": "1.0.0",
|
2021-01-21 23:25:55 +00:00
|
|
|
"@types/luxon": "1.25.1",
|
2020-11-17 02:00:49 +00:00
|
|
|
"@types/markdown-it": "10.0.3",
|
2020-05-07 08:23:45 +00:00
|
|
|
"@types/markdown-table": "2.0.0",
|
2020-12-08 12:56:08 +00:00
|
|
|
"@types/moo": "0.5.3",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/nock": "10.0.3",
|
2021-01-27 19:10:36 +00:00
|
|
|
"@types/node": "12.19.15",
|
2019-09-25 09:40:16 +00:00
|
|
|
"@types/node-emoji": "1.8.1",
|
2019-05-29 12:00:56 +00:00
|
|
|
"@types/parse-link-header": "1.0.0",
|
2020-12-03 07:35:57 +00:00
|
|
|
"@types/registry-auth-token": "4.2.0",
|
2020-09-17 23:00:46 +00:00
|
|
|
"@types/semver": "7.3.4",
|
2020-01-22 14:14:04 +00:00
|
|
|
"@types/semver-stable": "3.0.0",
|
2020-01-21 09:42:43 +00:00
|
|
|
"@types/semver-utils": "1.1.0",
|
2020-05-18 15:34:18 +00:00
|
|
|
"@types/shelljs": "0.8.8",
|
2019-11-29 13:11:53 +00:00
|
|
|
"@types/traverse": "0.6.32",
|
2020-09-17 20:00:38 +00:00
|
|
|
"@types/xmldoc": "1.1.5",
|
2020-10-30 19:00:46 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.6.0",
|
|
|
|
"@typescript-eslint/parser": "4.6.0",
|
2020-11-11 09:00:52 +00:00
|
|
|
"babel-jest": "26.6.3",
|
2020-04-25 00:01:42 +00:00
|
|
|
"babel-plugin-dynamic-import-node": "2.3.3",
|
2020-11-12 04:00:41 +00:00
|
|
|
"conventional-changelog-conventionalcommits": "4.5.0",
|
2020-12-09 07:40:26 +00:00
|
|
|
"cross-env": "7.0.3",
|
2020-10-30 19:00:46 +00:00
|
|
|
"eslint": "7.12.1",
|
2020-10-28 14:55:13 +00:00
|
|
|
"eslint-config-airbnb-typescript": "12.0.0",
|
2020-12-11 08:35:56 +00:00
|
|
|
"eslint-config-prettier": "7.0.0",
|
2020-09-30 05:35:12 +00:00
|
|
|
"eslint-plugin-import": "2.22.1",
|
2020-10-09 00:26:13 +00:00
|
|
|
"eslint-plugin-jest": "24.1.0",
|
2019-07-02 14:39:16 +00:00
|
|
|
"eslint-plugin-promise": "4.2.1",
|
2019-11-10 00:06:08 +00:00
|
|
|
"glob": "7.1.6",
|
2021-02-02 20:18:00 +00:00
|
|
|
"graphql": "15.5.0",
|
2021-01-23 01:46:43 +00:00
|
|
|
"husky": "4.3.8",
|
2020-11-11 09:00:52 +00:00
|
|
|
"jest": "26.6.3",
|
|
|
|
"jest-circus": "26.6.3",
|
2020-05-18 12:33:44 +00:00
|
|
|
"jest-extended": "0.11.5",
|
2020-10-16 07:21:48 +00:00
|
|
|
"jest-junit": "12.0.0",
|
2020-08-22 21:00:45 +00:00
|
|
|
"jest-mock-extended": "1.0.10",
|
2020-12-08 18:00:47 +00:00
|
|
|
"jest-silent-reporter": "0.4.0",
|
2020-07-17 10:32:12 +00:00
|
|
|
"mockdate": "3.0.2",
|
2021-02-06 05:46:02 +00:00
|
|
|
"nock": "13.0.7",
|
2019-05-21 15:23:30 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2020-12-02 13:10:31 +00:00
|
|
|
"prettier": "2.2.1",
|
2020-10-17 04:38:38 +00:00
|
|
|
"pretty-quick": "3.1.0",
|
2020-02-12 07:01:13 +00:00
|
|
|
"rimraf": "3.0.2",
|
2021-01-30 01:12:00 +00:00
|
|
|
"semantic-release": "17.3.7",
|
2020-04-28 06:50:12 +00:00
|
|
|
"shelljs": "0.8.4",
|
2020-04-09 04:02:07 +00:00
|
|
|
"strip-ansi": "6.0.0",
|
2020-07-17 11:57:30 +00:00
|
|
|
"tmp-promise": "3.0.2",
|
2020-12-04 12:17:12 +00:00
|
|
|
"type-fest": "0.20.2",
|
2020-12-18 23:00:51 +00:00
|
|
|
"typescript": "4.1.3"
|
2017-01-31 11:19:06 +00:00
|
|
|
},
|
2019-03-04 04:40:57 +00:00
|
|
|
"resolutions": {
|
2020-03-15 17:52:19 +00:00
|
|
|
"jest-silent-reporter/jest-util": ">=25.1.0",
|
2020-03-10 07:35:31 +00:00
|
|
|
"jest-junit/jest-validate": ">=25.1.0",
|
|
|
|
"**/acorn": ">=6.4.1 <7.0.0 || >=7.1.1",
|
2020-10-23 09:24:51 +00:00
|
|
|
"**/kind-of": ">=6.0.3",
|
|
|
|
"**/lock-verify/@iarna/cli": ">=2"
|
2019-03-04 04:40:57 +00:00
|
|
|
},
|
2017-10-01 05:20:21 +00:00
|
|
|
"files": [
|
2019-05-09 12:39:47 +00:00
|
|
|
"data",
|
2019-04-26 10:59:51 +00:00
|
|
|
"dist"
|
2017-10-01 05:20:21 +00:00
|
|
|
],
|
2017-11-13 14:36:10 +00:00
|
|
|
"publishConfig": {
|
2019-05-30 08:25:41 +00:00
|
|
|
"tag": "latest"
|
2017-11-13 14:36:10 +00:00
|
|
|
},
|
2018-12-14 18:46:42 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "pretty-quick --staged"
|
|
|
|
}
|
2016-12-18 06:51:25 +00:00
|
|
|
}
|
|
|
|
}
|