From 72cfdc8b512a835a6d4cbc3ea2079bc4d234a6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Fri, 14 Oct 2022 02:54:15 +0200 Subject: [PATCH] chore: sort `package.json` (#385) --- package.json | 60 ++++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/package.json b/package.json index 7ca4fa6f..828e40ac 100644 --- a/package.json +++ b/package.json @@ -9,45 +9,24 @@ "promise", "promises" ], + "homepage": "https://github.com/eslint-community/eslint-plugin-promise", + "bugs": "https://github.com/eslint-community/eslint-plugin-promise/issues", + "repository": { + "type": "git", + "url": "https://github.com/eslint-community/eslint-plugin-promise" + }, + "license": "ISC", "author": "jden ", "contributors": [ "Brett Zamir", "Aadit M Shah (https://aadit.codes/)" ], - "repository": { - "type": "git", - "url": "https://github.com/eslint-community/eslint-plugin-promise" - }, - "homepage": "https://github.com/eslint-community/eslint-plugin-promise", - "bugs": "https://github.com/eslint-community/eslint-plugin-promise/issues", "scripts": { "format": "prettier --write .", "lint": "eslint --report-unused-disable-directives .", "prepare": "husky install", "test": "jest --coverage" }, - "devDependencies": { - "@typescript-eslint/parser": "^5.40.0", - "doctoc": "^2.2.1", - "eslint": "^8.24.0", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-eslint-plugin": "^4.4.1", - "eslint-plugin-jest": "^26.9.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^4.2.1", - "husky": "^7.0.4", - "jest": "^28.1.3", - "lint-staged": "^12.5.0", - "prettier": "^2.7.1", - "typescript": "^4.8.4" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "license": "ISC", "lint-staged": { "{README.md,CONTRIBUTING.md}": [ "doctoc --maxlevel 3 --notitle" @@ -61,9 +40,9 @@ ] }, "prettier": { + "proseWrap": "always", "semi": false, - "singleQuote": true, - "proseWrap": "always" + "singleQuote": true }, "jest": { "coverageThreshold": { @@ -74,5 +53,26 @@ "statements": 100 } } + }, + "devDependencies": { + "@typescript-eslint/parser": "^5.40.0", + "doctoc": "^2.2.1", + "eslint": "^8.24.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-eslint-plugin": "^4.4.1", + "eslint-plugin-jest": "^26.9.0", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettier": "^4.2.1", + "husky": "^7.0.4", + "jest": "^28.1.3", + "lint-staged": "^12.5.0", + "prettier": "^2.7.1", + "typescript": "^4.8.4" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }