Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #2060

Merged
merged 7 commits into from
Apr 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,54 +47,54 @@
],
"dependencies": {
"@babel/helper-validator-identifier": "^7.19.1",
"@eslint-community/eslint-utils": "^4.1.2",
"ci-info": "^3.6.1",
"@eslint-community/eslint-utils": "^4.4.0",
"ci-info": "^3.8.0",
"clean-regexp": "^1.0.0",
"esquery": "^1.4.0",
"esquery": "^1.5.0",
"indent-string": "^4.0.0",
"is-builtin-module": "^3.2.0",
"is-builtin-module": "^3.2.1",
"jsesc": "^3.0.2",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"read-pkg-up": "^7.0.1",
"regexp-tree": "^0.1.24",
"regjsparser": "^0.9.1",
"regjsparser": "^0.10.0",
"safe-regex": "^2.1.1",
"semver": "^7.3.8",
"strip-indent": "^3.0.0"
},
"devDependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/code-frame": "^7.21.4",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
"@typescript-eslint/parser": "^5.43.0",
"@typescript-eslint/parser": "^5.57.1",
"ava": "^3.15.0",
"c8": "^7.12.0",
"chalk": "^5.1.2",
"c8": "^7.13.0",
"chalk": "^5.2.0",
"enquirer": "^2.3.6",
"eslint": "^8.28.0",
"eslint": "^8.37.0",
"eslint-ava-rule-tester": "^4.0.0",
"eslint-doc-generator": "^1.0.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-doc-generator": "^1.4.3",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-internal-rules": "file:./scripts/internal-rules/",
"eslint-remote-tester": "^3.0.0",
"eslint-remote-tester-repositories": "^1.0.0",
"execa": "^6.1.0",
"eslint-remote-tester-repositories": "^1.0.1",
"execa": "^7.1.1",
"listr": "^0.14.3",
"lodash-es": "^4.17.21",
"markdownlint-cli": "^0.32.2",
"markdownlint-cli": "^0.33.0",
"mem": "^9.0.2",
"npm-package-json-lint": "^6.3.0",
"npm-package-json-lint": "^6.4.0",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"typescript": "^4.9.3",
"vue-eslint-parser": "^9.1.0",
"xo": "^0.53.1",
"yaml": "^2.1.3"
"typescript": "^5.0.3",
"vue-eslint-parser": "^9.1.1",
"xo": "^0.54.0",
"yaml": "^2.2.1"
},
"peerDependencies": {
"eslint": ">=8.28.0"
"eslint": ">=8.37.0"
},
"ava": {
"files": [
Expand Down Expand Up @@ -127,7 +127,8 @@
"flatten"
]
}
]
],
"import/order": "off"
},
"overrides": [
{
Expand Down
1 change: 0 additions & 1 deletion rules/prevent-abbreviations.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use strict';
const path = require('node:path');
const {defaultsDeep, upperFirst, lowerFirst} = require('lodash');

const avoidCapture = require('./utils/avoid-capture.js');
const cartesianProductSamples = require('./utils/cartesian-product-samples.js');
const isShorthandPropertyValue = require('./utils/is-shorthand-property-value.js');
Expand Down
1 change: 1 addition & 0 deletions test/prefer-node-protocol.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ test.snapshot({
const fs = await import(\`fs\`);
}
`,
'import "punycode/";',
],
invalid: [
'import fs from "fs";',
Expand Down