Skip to content

Commit

Permalink
chore: sort package.json (mysticatea#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Nov 27, 2022
1 parent 92ef9e3 commit 8ac38b1
Showing 1 changed file with 37 additions and 38 deletions.
75 changes: 37 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,49 @@
"name": "@eslint-community/eslint-utils",
"version": "0.0.0-semantically-released",
"description": "Utilities for ESLint plugins.",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"keywords": [
"eslint"
],
"homepage": "https://github.com/eslint-community/eslint-utils#readme",
"bugs": {
"url": "https://github.com/eslint-community/eslint-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-utils"
},
"license": "MIT",
"author": "Toru Nagashima",
"sideEffects": false,
"main": "index",
"module": "index.mjs",
"files": [
"index.*"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"main": "index",
"module": "index.mjs",
"files": [
"index.*"
],
"scripts": {
"prebuild": "npm run -s clean",
"build": "rollup -c",
"clean": "rimraf .nyc_output coverage index.*",
"coverage": "opener ./coverage/lcov-report/index.html",
"docs:build": "vuepress build docs",
"docs:watch": "vuepress dev docs",
"format": "npm run -s format:prettier -- --write",
"format:prettier": "prettier .",
"format:check": "npm run -s format:prettier -- --check",
"lint": "eslint .",
"test": "nyc mocha --reporter dot \"test/*.js\"",
"preversion": "npm test && npm run -s build",
"postversion": "git push && git push --tags",
"prewatch": "npm run -s clean",
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
},
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
Expand All @@ -42,35 +69,7 @@
"peerDependencies": {
"eslint": ">=6"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "rollup -c",
"clean": "rimraf .nyc_output coverage index.*",
"codecov": "nyc report -r lcovonly && codecov",
"coverage": "opener ./coverage/lcov-report/index.html",
"docs:build": "vuepress build docs",
"docs:watch": "vuepress dev docs",
"format": "npm run -s format:prettier -- --write",
"format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md",
"format:check": "npm run -s format:prettier -- --check",
"lint": "eslint .",
"test": "nyc mocha --reporter dot \"test/*.js\"",
"preversion": "npm test && npm run -s build",
"postversion": "git push && git push --tags",
"prewatch": "npm run -s clean",
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-utils"
},
"keywords": [
"eslint"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-community/eslint-utils/issues"
},
"homepage": "https://github.com/eslint-community/eslint-utils#readme"
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
}

0 comments on commit 8ac38b1

Please sign in to comment.