@eslint-community/eslint-plugin-eslint-comments 4.1.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint-community/eslint-plugin-eslint-comments",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Additional ESLint rules for ESLint directive comments.",
5
5
  "engines": {
6
6
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -10,7 +10,7 @@
10
10
  "lib"
11
11
  ],
12
12
  "peerDependencies": {
13
- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
13
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
14
14
  },
15
15
  "dependencies": {
16
16
  "escape-string-regexp": "^4.0.0",
@@ -23,25 +23,25 @@
23
23
  "@types/node": "^14.18.54",
24
24
  "@vuepress/plugin-pwa": "^1.9.9",
25
25
  "cross-spawn": "^7.0.3",
26
+ "esbuild": "^0.19.3",
26
27
  "eslint": "^8.46.0",
27
- "eslint4b": "^7.32.0",
28
28
  "fs-extra": "^10.1.0",
29
29
  "mocha": "^9.2.2",
30
+ "monaco-editor": "^0.47.0",
30
31
  "nyc": "^15.1.0",
31
32
  "opener": "^1.5.2",
32
33
  "rimraf": "^3.0.2",
33
34
  "semver": "^7.5.4",
34
- "string-replace-loader": "^3.1.0",
35
- "vue-eslint-editor": "^1.1.0",
36
- "vuepress": "^1.9.9"
35
+ "vite-plugin-eslint4b": "^0.2.1",
36
+ "vitepress": "^1.0.0-rc.15"
37
37
  },
38
38
  "scripts": {
39
39
  "preversion": "npm test",
40
40
  "version": "node scripts/update && git add .",
41
41
  "postversion": "git push && git push --tags",
42
- "clean": "rimraf .nyc_output coverage docs/.vuepress/dist",
43
- "docs:build": "vuepress build docs",
44
- "docs:watch": "vuepress dev docs",
42
+ "clean": "rimraf .nyc_output coverage docs/.vitepress/cache",
43
+ "docs:build": "vitepress build docs",
44
+ "docs:watch": "vitepress dev docs",
45
45
  "lint": "eslint lib scripts tests",
46
46
  "test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot --timeout 8000",
47
47
  "coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",