forked from mysticatea/eslint-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.47 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
{
"name": "@eslint-community/eslint-plugin-mysticatea",
"version": "0.0.0-semantically-released",
"description": "Additional ESLint rules.",
"keywords": [
"eslint",
"eslintplugin",
"block",
"scope",
"instanceof",
"isArray",
"static",
"this",
"rest",
"spread",
"ignore"
],
"homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme",
"bugs": {
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea"
},
"license": "MIT",
"author": "Toru Nagashima",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf .nyc_output coverage",
"coverage": "opener coverage/lcov-report/index.html",
"format": "prettier -w .",
"lint": "eslint lib scripts tests",
"test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot",
"update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules",
"preversion": "run-s clean update test",
"version": "eslint lib/rules --fix && git add lib",
"postversion": "git push && git push --tags",
"watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~5.62.0",
"@typescript-eslint/parser": "~5.62.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-eslint-plugin": "~4.4.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.4.1",
"eslint-plugin-vue": "~8.7.1",
"prettier": "~2.8.8",
"semver": "^7.6.3",
"vue-eslint-parser": "^8.3.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-mysticatea": "file:.",
"@eslint/eslintrc": "^2.1.4",
"eslint": "~8.57.1",
"eslint-config-prettier": "^8.10.0",
"globals": "^13.24.0",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"opener": "^1.5.2",
"rimraf": "^3.0.2",
"typescript": "~5.0.4"
},
"peerDependencies": {
"eslint": "^6.6.0 || ^7.0.0 || ^8.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": "https://opencollective.com/eslint"
}