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",
|
2018-03-07 05:10:17 +00:00
|
|
|
"renovate-config-validator": "bin/config-validator.js"
|
2018-03-06 14:43:15 +00:00
|
|
|
},
|
2017-01-10 21:38:37 +00:00
|
|
|
"scripts": {
|
2019-07-23 08:34:02 +00:00
|
|
|
"build": "run-s clean compile:* copy-static-files",
|
2019-07-24 06:13:27 +00:00
|
|
|
"build:docker": "run-s compile:ts copy-static-files",
|
2019-05-13 08:17:53 +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",
|
2019-05-13 07:11:03 +00:00
|
|
|
"copy-static-files": "copyfiles -u 1 lib/**/*.json lib/**/*.py dist/",
|
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",
|
2019-07-08 13:58:12 +00:00
|
|
|
"eslint": "eslint --ext .js,.ts lib/ test/",
|
|
|
|
"eslint-fix": "eslint --ext .js,.ts --fix lib/ test/",
|
2018-03-30 19:23:51 +00:00
|
|
|
"jest": "yarn clean-cache && cross-env NODE_ENV=test LOG_LEVEL=fatal jest",
|
2019-02-24 16:07:16 +00:00
|
|
|
"jest-debug": "cross-env NODE_ENV=test LOG_LEVEL=fatal node --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",
|
2019-07-17 08:14:56 +00:00
|
|
|
"lint": "run-s eslint prettier",
|
|
|
|
"lint-fix": "run-s eslint-fix prettier-fix",
|
2019-04-26 10:59:51 +00:00
|
|
|
"prettier": "prettier --list-different \"**/*.{ts,js,json,md}\"",
|
|
|
|
"prettier-fix": "prettier --write \"**/*.{ts,js,json,md}\"",
|
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",
|
2019-09-12 08:37:33 +00:00
|
|
|
"test-e2e": "npm pack && cd 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",
|
|
|
|
"type-check": "tsc --noEmit"
|
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": [
|
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>",
|
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>",
|
|
|
|
"Maximilian Gaß <mxey@mxey.net>",
|
2019-04-10 05:13:03 +00:00
|
|
|
"Matt Lavin <matt.lavin@gmail.com>",
|
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>",
|
|
|
|
"Tanuel <tanuel.mategi@gmail.com>",
|
|
|
|
"Vladimir Starkov <iamstarkov@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": {
|
2019-09-22 09:34:51 +00:00
|
|
|
"node": "^10.13.0 || ^12.0.0",
|
|
|
|
"yarn": ">=1.10.1"
|
2017-01-11 18:32:45 +00:00
|
|
|
},
|
2016-12-18 06:51:25 +00:00
|
|
|
"dependencies": {
|
2019-01-07 05:57:45 +00:00
|
|
|
"@renovate/pep440": "0.4.1",
|
2019-07-13 07:32:33 +00:00
|
|
|
"@sindresorhus/is": "1.0.0",
|
2019-07-25 17:50:33 +00:00
|
|
|
"@snyk/ruby-semver": "2.0.4",
|
2018-09-10 16:06:56 +00:00
|
|
|
"@yarnpkg/lockfile": "1.1.0",
|
2019-09-22 09:34:51 +00:00
|
|
|
"aws-sdk": "2.528.0",
|
2019-08-26 08:49:22 +00:00
|
|
|
"azure-devops-node-api": "9.0.1",
|
2017-08-03 00:47:34 +00:00
|
|
|
"bunyan": "1.8.12",
|
2019-08-26 19:41:14 +00:00
|
|
|
"cacache": "12.0.3",
|
2019-01-06 06:27:12 +00:00
|
|
|
"chalk": "2.4.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",
|
2019-09-02 09:01:36 +00:00
|
|
|
"commander": "3.0.1",
|
2018-10-31 23:27:19 +00:00
|
|
|
"conventional-commits-detector": "1.0.2",
|
2019-06-03 08:27:27 +00:00
|
|
|
"convert-hrtime": "3.0.0",
|
2019-07-14 12:02:29 +00:00
|
|
|
"deepmerge": "4.0.0",
|
2019-06-28 11:01:55 +00:00
|
|
|
"delay": "4.3.0",
|
2019-06-03 20:33:08 +00:00
|
|
|
"detect-indent": "6.0.0",
|
2018-11-11 05:53:55 +00:00
|
|
|
"email-addresses": "3.0.3",
|
2019-07-01 17:58:41 +00:00
|
|
|
"fs-extra": "8.1.0",
|
2017-10-12 06:05:13 +00:00
|
|
|
"get-installed-path": "4.0.8",
|
2017-06-27 15:35:23 +00:00
|
|
|
"github-url-from-git": "1.5.0",
|
2019-09-20 12:01:31 +00:00
|
|
|
"global-agent": "2.1.1",
|
2019-01-24 04:22:52 +00:00
|
|
|
"got": "9.6.0",
|
2019-09-23 18:00:50 +00:00
|
|
|
"handlebars": "4.2.1",
|
2019-06-21 06:26:20 +00:00
|
|
|
"hasha": "5.0.0",
|
2017-11-21 22:29:53 +00:00
|
|
|
"ini": "1.3.5",
|
2019-04-05 19:28:25 +00:00
|
|
|
"js-yaml": "3.13.1",
|
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",
|
2019-04-19 06:39:20 +00:00
|
|
|
"json5": "2.1.0",
|
2017-06-30 12:04:46 +00:00
|
|
|
"later": "1.2.0",
|
2018-07-26 15:13:01 +00:00
|
|
|
"linkify-markdown": "1.0.0",
|
2019-07-19 05:14:54 +00:00
|
|
|
"lodash": "4.17.15",
|
2019-09-17 01:49:35 +00:00
|
|
|
"luxon": "1.17.3",
|
2019-08-19 17:35:02 +00:00
|
|
|
"markdown-it": "9.1.0",
|
2019-06-02 08:50:35 +00:00
|
|
|
"markdown-table": "1.1.3",
|
2017-09-12 05:49:56 +00:00
|
|
|
"minimatch": "3.0.4",
|
2019-01-22 20:12:18 +00:00
|
|
|
"moment": "2.24.0",
|
2019-07-13 06:32:47 +00:00
|
|
|
"moment-timezone": "0.5.26",
|
2019-07-02 03:36:50 +00:00
|
|
|
"node-html-parser": "1.1.16",
|
2019-09-07 02:01:29 +00:00
|
|
|
"npm": "6.11.3",
|
2019-04-07 08:01:44 +00:00
|
|
|
"p-all": "2.1.0",
|
2019-09-02 00:00:50 +00:00
|
|
|
"parse-diff": "0.6.0",
|
2017-10-17 18:44:40 +00:00
|
|
|
"parse-link-header": "1.0.1",
|
2019-09-04 19:00:53 +00:00
|
|
|
"pnpm": "3.8.1",
|
2019-06-25 15:10:25 +00:00
|
|
|
"registry-auth-token": "4.0.0",
|
2019-03-02 11:01:22 +00:00
|
|
|
"safe-regex": "2.0.2",
|
2019-07-25 13:34:44 +00:00
|
|
|
"semver": "6.3.0",
|
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",
|
2019-09-03 17:36:08 +00:00
|
|
|
"simple-git": "1.126.0",
|
2019-09-11 18:01:49 +00:00
|
|
|
"slugify": "1.3.5",
|
2019-03-07 12:12:20 +00:00
|
|
|
"toml": "3.0.0",
|
2017-09-14 15:57:17 +00:00
|
|
|
"traverse": "0.6.6",
|
2019-09-06 01:01:41 +00:00
|
|
|
"upath": "1.2.0",
|
2019-01-27 07:36:14 +00:00
|
|
|
"validate-npm-package-name": "3.0.0",
|
2019-07-14 09:27:16 +00:00
|
|
|
"validator": "11.1.0",
|
2018-07-26 14:25:44 +00:00
|
|
|
"www-authenticate": "0.6.2",
|
2019-01-17 18:11:04 +00:00
|
|
|
"xmldoc": "1.1.2",
|
2019-07-13 11:37:48 +00:00
|
|
|
"yarn": "1.17.3",
|
2019-07-01 17:58:18 +00:00
|
|
|
"yawn-yaml": "1.4.0"
|
2017-01-10 21:28:22 +00:00
|
|
|
},
|
2019-08-25 12:29:51 +00:00
|
|
|
"optionalDependencies": {
|
2019-09-25 09:00:46 +00:00
|
|
|
"re2": "1.10.2"
|
2019-08-25 12:29:51 +00:00
|
|
|
},
|
2017-01-10 21:28:22 +00:00
|
|
|
"devDependencies": {
|
2019-09-09 21:14:35 +00:00
|
|
|
"@babel/cli": "7.6.0",
|
|
|
|
"@babel/core": "7.6.0",
|
|
|
|
"@babel/node": "7.6.1",
|
2019-07-20 17:03:48 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.5.5",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
|
2019-07-13 06:09:01 +00:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
2019-09-09 21:14:35 +00:00
|
|
|
"@babel/preset-env": "7.6.0",
|
|
|
|
"@babel/preset-typescript": "7.6.0",
|
2019-04-26 10:59:51 +00:00
|
|
|
"@types/bunyan": "1.8.6",
|
2019-09-20 11:01:12 +00:00
|
|
|
"@types/chai": "4.2.3",
|
2019-05-15 13:40:29 +00:00
|
|
|
"@types/convert-hrtime": "2.0.0",
|
2019-07-01 17:58:41 +00:00
|
|
|
"@types/fs-extra": "8.0.0",
|
2019-08-17 08:37:03 +00:00
|
|
|
"@types/got": "9.6.7",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/ini": "1.3.30",
|
2019-08-20 05:17:14 +00:00
|
|
|
"@types/jest": "24.0.18",
|
2019-07-25 06:17:19 +00:00
|
|
|
"@types/js-yaml": "3.12.1",
|
2019-08-23 13:46:31 +00:00
|
|
|
"@types/later": "1.2.5",
|
2019-08-29 02:04:11 +00:00
|
|
|
"@types/lodash": "4.14.138",
|
2019-07-25 06:17:19 +00:00
|
|
|
"@types/luxon": "1.15.2",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/nock": "10.0.3",
|
2019-09-02 06:00:50 +00:00
|
|
|
"@types/node": "11.13.20",
|
2019-05-29 12:00:56 +00:00
|
|
|
"@types/parse-link-header": "1.0.0",
|
2019-08-15 04:30:16 +00:00
|
|
|
"@types/registry-auth-token": "3.3.0",
|
2019-08-23 13:46:31 +00:00
|
|
|
"@types/safe-regex": "1.1.2",
|
2019-09-09 00:01:45 +00:00
|
|
|
"@types/semver": "6.0.2",
|
2019-07-19 06:18:38 +00:00
|
|
|
"@types/shelljs": "0.8.5",
|
2019-05-21 11:55:48 +00:00
|
|
|
"@types/tmp": "0.1.0",
|
2019-08-20 06:01:40 +00:00
|
|
|
"@types/validator": "10.11.3",
|
2019-07-25 06:17:19 +00:00
|
|
|
"@types/xmldoc": "1.1.4",
|
2019-09-19 18:02:16 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "2.3.0",
|
|
|
|
"@typescript-eslint/parser": "2.3.0",
|
2019-09-22 09:34:51 +00:00
|
|
|
"aws-sdk-mock": "4.5.0",
|
2019-08-19 14:10:07 +00:00
|
|
|
"babel-jest": "24.9.0",
|
2019-07-13 06:09:01 +00:00
|
|
|
"babel-plugin-dynamic-import-node": "2.3.0",
|
2018-09-26 15:06:52 +00:00
|
|
|
"chai": "4.2.0",
|
2019-07-14 09:14:57 +00:00
|
|
|
"copyfiles": "2.1.1",
|
2019-09-03 18:35:23 +00:00
|
|
|
"cross-env": "5.2.1",
|
2019-09-17 02:01:22 +00:00
|
|
|
"eslint": "6.4.0",
|
2019-07-14 10:01:42 +00:00
|
|
|
"eslint-config-airbnb-typescript": "4.0.1",
|
2019-09-13 15:58:45 +00:00
|
|
|
"eslint-config-prettier": "6.3.0",
|
2019-07-20 07:58:47 +00:00
|
|
|
"eslint-plugin-import": "2.18.2",
|
2019-07-02 14:39:16 +00:00
|
|
|
"eslint-plugin-promise": "4.2.1",
|
2019-05-13 08:17:53 +00:00
|
|
|
"glob": "7.1.4",
|
2019-09-04 17:00:59 +00:00
|
|
|
"husky": "3.0.5",
|
2019-08-19 14:10:07 +00:00
|
|
|
"jest": "24.9.0",
|
2019-09-07 12:51:19 +00:00
|
|
|
"jest-junit": "8.0.0",
|
2019-03-02 13:01:27 +00:00
|
|
|
"jest-silent-reporter": "0.1.2",
|
2019-08-20 10:48:13 +00:00
|
|
|
"mockdate": "2.0.5",
|
2019-09-23 15:48:34 +00:00
|
|
|
"nock": "11.3.5",
|
2019-05-21 15:23:30 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2019-07-02 08:55:05 +00:00
|
|
|
"prettier": "1.18.2",
|
2019-07-14 10:52:41 +00:00
|
|
|
"pretty-quick": "1.11.1",
|
2019-08-27 11:49:53 +00:00
|
|
|
"rimraf": "3.0.0",
|
2019-08-25 10:14:39 +00:00
|
|
|
"semantic-release": "15.13.24",
|
2019-07-19 06:18:38 +00:00
|
|
|
"shelljs": "0.8.3",
|
2019-07-14 10:58:13 +00:00
|
|
|
"tmp-promise": "2.0.2",
|
2019-09-13 21:01:00 +00:00
|
|
|
"typescript": "3.6.3"
|
2017-01-31 11:19:06 +00:00
|
|
|
},
|
2019-03-04 04:40:57 +00:00
|
|
|
"resolutions": {
|
2019-07-27 11:41:47 +00:00
|
|
|
"lodash": "4.17.15",
|
|
|
|
"yargs": "13.3.0"
|
2019-03-04 04:40:57 +00:00
|
|
|
},
|
2017-10-01 05:20:21 +00:00
|
|
|
"files": [
|
2018-03-07 05:18:41 +00:00
|
|
|
"bin/config-validator.js",
|
2019-01-28 08:54:04 +00:00
|
|
|
"bin/yarn-1.9.4.js",
|
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-02-09 04:30:00 +00:00
|
|
|
"jest": {
|
2017-06-30 14:02:40 +00:00
|
|
|
"cacheDirectory": ".cache/jest",
|
2017-02-09 04:30:00 +00:00
|
|
|
"coverageDirectory": "./coverage",
|
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
2019-05-16 11:00:40 +00:00
|
|
|
"lib/**/*.{js,ts}",
|
2019-07-23 12:39:15 +00:00
|
|
|
"!lib/**/*.d.ts",
|
2019-03-07 11:38:59 +00:00
|
|
|
"!lib/versioning/maven/index.js",
|
|
|
|
"!lib/proxy.js"
|
2017-02-09 04:30:00 +00:00
|
|
|
],
|
|
|
|
"coverageReporters": [
|
2018-09-19 07:42:12 +00:00
|
|
|
"html",
|
2017-02-09 04:30:00 +00:00
|
|
|
"json",
|
|
|
|
"lcov",
|
|
|
|
"text-summary"
|
|
|
|
],
|
2019-08-15 12:27:55 +00:00
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
2019-09-10 07:40:44 +00:00
|
|
|
"branches": 95,
|
2019-08-15 12:27:55 +00:00
|
|
|
"functions": 100,
|
|
|
|
"lines": 100,
|
|
|
|
"statements": 100
|
|
|
|
}
|
|
|
|
},
|
2017-11-07 10:46:10 +00:00
|
|
|
"setupFiles": [
|
2017-11-08 05:44:03 +00:00
|
|
|
"./test/globals.js"
|
2017-11-07 10:46:10 +00:00
|
|
|
],
|
2019-03-07 11:38:59 +00:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"./test/chai.js"
|
|
|
|
],
|
2018-04-13 04:52:08 +00:00
|
|
|
"snapshotSerializers": [
|
|
|
|
"./test/newline-snapshot-serializer.js"
|
2019-04-26 10:59:51 +00:00
|
|
|
],
|
2019-05-28 09:21:17 +00:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.(j|t)s$": "babel-jest"
|
|
|
|
}
|
2017-02-09 04:30:00 +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"
|
|
|
|
}
|
|
|
|
},
|
2017-06-29 12:36:50 +00:00
|
|
|
"release": {
|
2018-05-12 03:46:38 +00:00
|
|
|
"branch": "master",
|
2019-05-28 09:21:17 +00:00
|
|
|
"analyzeCommits": {
|
|
|
|
"preset": "angular",
|
|
|
|
"releaseRules": [
|
|
|
|
{
|
|
|
|
"type": "docs",
|
|
|
|
"scope": "readme.md",
|
|
|
|
"release": "patch"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "build",
|
|
|
|
"release": "patch"
|
|
|
|
}
|
|
|
|
]
|
2019-05-27 05:43:25 +00:00
|
|
|
},
|
2019-04-23 09:01:11 +00:00
|
|
|
"tagFormat": "${version}"
|
2016-12-18 06:51:25 +00:00
|
|
|
}
|
|
|
|
}
|