From a3275eeee660de3df2df1a88e409fb5907a383d2 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Wed, 16 Jan 2019 21:39:04 +0100 Subject: [PATCH] Update dependencies --- README.md | 2 +- package-lock.json | 72 ++++++++++++++++++++++++++++++++++++++++++++--- package.json | 2 +- 3 files changed, 70 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 346ed67..89c4a41 100644 --- a/README.md +++ b/README.md @@ -709,7 +709,7 @@ eslint-config-prettier has been tested with: - eslint-plugin-react 7.12.3 - eslint-plugin-standard 4.0.0 - eslint-plugin-typescript 1.0.0-rc.1 -- eslint-plugin-unicorn 6.0.1 +- eslint-plugin-unicorn 7.0.0 - eslint-plugin-vue 5.1.0 Have new rules been added since those versions? Have we missed any rules? Is diff --git a/package-lock.json b/package-lock.json index 5f4b7b6..7a3d1c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1307,6 +1307,17 @@ "restore-cursor": "^2.0.0" } }, + "cli-table3": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz", + "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==", + "dev": true, + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^2.1.1" + } + }, "cli-width": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", @@ -1989,9 +2000,9 @@ } }, "eslint-plugin-unicorn": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-6.0.1.tgz", - "integrity": "sha512-hjy9LhTdtL7pz8WTrzS0CGXRkWK3VAPLDjihofj8JC+uxQLfXm0WwZPPPB7xKmcjRyoH+jruPHOCrHNEINpG/Q==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-7.0.0.tgz", + "integrity": "sha512-Tz2/2nUwT0qzYzHfOzpib6dltmwivdJd+Kf7GZ4e/xg4INCpVMevl1MKFNFv19n9+g2KMdC7yXgPHdUnXmtiBQ==", "dev": true, "requires": { "clean-regexp": "^1.0.0", @@ -2001,7 +2012,18 @@ "lodash.kebabcase": "^4.0.1", "lodash.snakecase": "^4.0.1", "lodash.upperfirst": "^4.2.0", - "safe-regex": "^1.1.0" + "safe-regex": "^2.0.1" + }, + "dependencies": { + "safe-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.0.1.tgz", + "integrity": "sha512-4tbOl0xq/cxbhEhdvxKaCZgzwOKeqt2tnHc2OPBkMsVdZ0s0C5oJwI6voRI9XzPSzeN35PECDNDK946x4d/0eA==", + "dev": true, + "requires": { + "regexp-tree": "~0.0.85" + } + } } }, "eslint-plugin-vue": { @@ -5068,6 +5090,48 @@ "safe-regex": "^1.1.0" } }, + "regexp-tree": { + "version": "0.0.86", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.0.86.tgz", + "integrity": "sha512-xjTX9GmRw7Nn2wxinLoqQXv9Dt5yerP7CJIsYe/5z5gFs0Ltu20wRuZophafi9sf0JpsdVtki5EuICRYpgB1AQ==", + "dev": true, + "requires": { + "cli-table3": "^0.5.0", + "colors": "^1.1.2", + "yargs": "^10.0.3" + }, + "dependencies": { + "yargs": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-10.1.2.tgz", + "integrity": "sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==", + "dev": true, + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^8.1.0" + } + }, + "yargs-parser": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz", + "integrity": "sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==", + "dev": true, + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, "regexpp": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", diff --git a/package.json b/package.json index 9e609d1..97e0952 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "eslint-plugin-react": "7.12.3", "eslint-plugin-standard": "4.0.0", "eslint-plugin-typescript": "1.0.0-rc.1", - "eslint-plugin-unicorn": "6.0.1", + "eslint-plugin-unicorn": "7.0.0", "eslint-plugin-vue": "github:vuejs/eslint-plugin-vue#9c49dcc8ff792ec6798037bd6b7f4ac3d26fdf68", "jest": "23.6.0", "prettier": "1.15.3",