Skip to content

Commit

Permalink
chore: sort package.json (mysticatea#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Oct 18, 2022
1 parent 3437db4 commit 5bb8f04
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,44 @@
"name": "@eslint-community/eslint-plugin-mysticatea",
"version": "0.0.0-semantically-released",
"description": "Additional ESLint rules.",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"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"
],
"peerDependencies": {
"eslint": ">=6.6.0"
"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.40.0",
Expand All @@ -35,39 +64,10 @@
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea"
},
"keywords": [
"eslint",
"eslintplugin",
"block",
"scope",
"instanceof",
"isArray",
"static",
"this",
"rest",
"spread",
"ignore"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-community/eslint-plugin-mysticatea/issues"
"peerDependencies": {
"eslint": ">=6.6.0"
},
"homepage": "https://github.com/eslint-community/eslint-plugin-mysticatea#readme"
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
}

0 comments on commit 5bb8f04

Please sign in to comment.