forked from mysticatea/eslint-plugin-eslint-comments
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@eslint-community/eslint-plugin-eslint-comments",
"version": "0.0.0-semantically-released",
"description": "Additional ESLint rules for ESLint directive comments.",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"main": "index.js",
"files": [
"configs.js",
"lib"
],
"exports": {
"./configs": "./configs.js",
".": "./index.js"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"escape-string-regexp": "^4.0.0",
"ignore": "^5.2.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@eslint-community/eslint-plugin-mysticatea": "^15.5.1",
"@types/node": "^14.18.54",
"@vuepress/plugin-pwa": "^1.9.9",
"cross-spawn": "^7.0.3",
"esbuild": "^0.19.3",
"eslint": "^8.46.0",
"fs-extra": "^10.1.0",
"mocha": "^10.4.0",
"monaco-editor": "^0.47.0",
"nyc": "^15.1.0",
"opener": "^1.5.2",
"rimraf": "^3.0.2",
"semver": "^7.5.4",
"vite-plugin-eslint4b": "^0.2.1",
"vitepress": "^1.0.0-rc.15"
},
"scripts": {
"preversion": "npm test",
"version": "node scripts/update && git add .",
"postversion": "git push && git push --tags",
"clean": "rimraf .nyc_output coverage docs/.vitepress/cache",
"docs:build": "vitepress build docs",
"docs:watch": "vitepress dev docs",
"lint": "eslint lib scripts tests",
"test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot --timeout 8000",
"coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",
"watch": "npm run -s test -- --watch --growl"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-plugin-eslint-comments"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"plugin",
"comment",
"comments",
"directive",
"global",
"globals",
"exported",
"eslint-env",
"eslint-enable",
"eslint-disable",
"eslint-disable-line",
"eslint-disable-next-line"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-community/eslint-plugin-eslint-comments/issues"
},
"homepage": "https://github.com/eslint-community/eslint-plugin-eslint-comments#readme",
"funding": "https://opencollective.com/eslint"
}