Skip to content

Commit 8ac38b1

Browse files
chore: sort package.json (#14)
1 parent 92ef9e3 commit 8ac38b1

File tree

1 file changed

+37
-38
lines changed

1 file changed

+37
-38
lines changed

package.json

+37-38
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,49 @@
22
"name": "@eslint-community/eslint-utils",
33
"version": "0.0.0-semantically-released",
44
"description": "Utilities for ESLint plugins.",
5-
"engines": {
6-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
5+
"keywords": [
6+
"eslint"
7+
],
8+
"homepage": "https://github.com/eslint-community/eslint-utils#readme",
9+
"bugs": {
10+
"url": "https://github.com/eslint-community/eslint-utils/issues"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/eslint-community/eslint-utils"
715
},
16+
"license": "MIT",
17+
"author": "Toru Nagashima",
818
"sideEffects": false,
9-
"main": "index",
10-
"module": "index.mjs",
11-
"files": [
12-
"index.*"
13-
],
1419
"exports": {
1520
".": {
1621
"import": "./index.mjs",
1722
"require": "./index.js"
1823
},
1924
"./package.json": "./package.json"
2025
},
26+
"main": "index",
27+
"module": "index.mjs",
28+
"files": [
29+
"index.*"
30+
],
31+
"scripts": {
32+
"prebuild": "npm run -s clean",
33+
"build": "rollup -c",
34+
"clean": "rimraf .nyc_output coverage index.*",
35+
"coverage": "opener ./coverage/lcov-report/index.html",
36+
"docs:build": "vuepress build docs",
37+
"docs:watch": "vuepress dev docs",
38+
"format": "npm run -s format:prettier -- --write",
39+
"format:prettier": "prettier .",
40+
"format:check": "npm run -s format:prettier -- --check",
41+
"lint": "eslint .",
42+
"test": "nyc mocha --reporter dot \"test/*.js\"",
43+
"preversion": "npm test && npm run -s build",
44+
"postversion": "git push && git push --tags",
45+
"prewatch": "npm run -s clean",
46+
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
47+
},
2148
"dependencies": {
2249
"eslint-visitor-keys": "^3.3.0"
2350
},
@@ -42,35 +69,7 @@
4269
"peerDependencies": {
4370
"eslint": ">=6"
4471
},
45-
"scripts": {
46-
"prebuild": "npm run -s clean",
47-
"build": "rollup -c",
48-
"clean": "rimraf .nyc_output coverage index.*",
49-
"codecov": "nyc report -r lcovonly && codecov",
50-
"coverage": "opener ./coverage/lcov-report/index.html",
51-
"docs:build": "vuepress build docs",
52-
"docs:watch": "vuepress dev docs",
53-
"format": "npm run -s format:prettier -- --write",
54-
"format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md",
55-
"format:check": "npm run -s format:prettier -- --check",
56-
"lint": "eslint .",
57-
"test": "nyc mocha --reporter dot \"test/*.js\"",
58-
"preversion": "npm test && npm run -s build",
59-
"postversion": "git push && git push --tags",
60-
"prewatch": "npm run -s clean",
61-
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
62-
},
63-
"repository": {
64-
"type": "git",
65-
"url": "https://github.com/eslint-community/eslint-utils"
66-
},
67-
"keywords": [
68-
"eslint"
69-
],
70-
"author": "Toru Nagashima",
71-
"license": "MIT",
72-
"bugs": {
73-
"url": "https://github.com/eslint-community/eslint-utils/issues"
74-
},
75-
"homepage": "https://github.com/eslint-community/eslint-utils#readme"
72+
"engines": {
73+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
74+
}
7675
}

0 commit comments

Comments
 (0)