Skip to content

Commit 5bb8f04

Browse files
chore: sort package.json (#27)
1 parent 3437db4 commit 5bb8f04

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

package.json

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,44 @@
22
"name": "@eslint-community/eslint-plugin-mysticatea",
33
"version": "0.0.0-semantically-released",
44
"description": "Additional ESLint rules.",
5-
"engines": {
6-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
5+
"keywords": [
6+
"eslint",
7+
"eslintplugin",
8+
"block",
9+
"scope",
10+
"instanceof",
11+
"isArray",
12+
"static",
13+
"this",
14+
"rest",
15+
"spread",
16+
"ignore"
17+
],
18+
"homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme",
19+
"bugs": {
20+
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues"
721
},
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea"
25+
},
26+
"license": "MIT",
27+
"author": "Toru Nagashima",
828
"main": "index.js",
929
"files": [
1030
"lib"
1131
],
12-
"peerDependencies": {
13-
"eslint": ">=6.6.0"
32+
"scripts": {
33+
"clean": "rimraf .nyc_output coverage",
34+
"coverage": "opener coverage/lcov-report/index.html",
35+
"format": "prettier -w .",
36+
"lint": "eslint lib scripts tests",
37+
"test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot",
38+
"update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules",
39+
"preversion": "run-s clean update test",
40+
"version": "eslint lib/rules --fix && git add lib",
41+
"postversion": "git push && git push --tags",
42+
"watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl"
1443
},
1544
"dependencies": {
1645
"@typescript-eslint/eslint-plugin": "^5.40.0",
@@ -35,39 +64,10 @@
3564
"rimraf": "^3.0.2",
3665
"typescript": "^4.8.4"
3766
},
38-
"scripts": {
39-
"clean": "rimraf .nyc_output coverage",
40-
"coverage": "opener coverage/lcov-report/index.html",
41-
"format": "prettier -w .",
42-
"lint": "eslint lib scripts tests",
43-
"test": "nyc mocha \"tests/lib/**/*.js\" --reporter dot",
44-
"update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules",
45-
"preversion": "run-s clean update test",
46-
"version": "eslint lib/rules --fix && git add lib",
47-
"postversion": "git push && git push --tags",
48-
"watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl"
49-
},
50-
"repository": {
51-
"type": "git",
52-
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea"
53-
},
54-
"keywords": [
55-
"eslint",
56-
"eslintplugin",
57-
"block",
58-
"scope",
59-
"instanceof",
60-
"isArray",
61-
"static",
62-
"this",
63-
"rest",
64-
"spread",
65-
"ignore"
66-
],
67-
"author": "Toru Nagashima",
68-
"license": "MIT",
69-
"bugs": {
70-
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues"
67+
"peerDependencies": {
68+
"eslint": ">=6.6.0"
7169
},
72-
"homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme"
70+
"engines": {
71+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
72+
}
7373
}

0 commit comments

Comments
 (0)