From d05a227a7a85532857dfff27c3f51a47399994e5 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sat, 15 Feb 2025 15:59:52 +0100 Subject: [PATCH] chore: consistent package-json ordering Signed-off-by: Ferdinand Thiessen --- package.json | 76 ++++++++++++++++++++++++++-------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/package.json b/package.json index 0cd43d83..2a62cc88 100644 --- a/package.json +++ b/package.json @@ -2,31 +2,38 @@ "name": "@nextcloud/eslint-config", "version": "8.4.1", "description": "Eslint shared config for nextcloud vue.js apps", - "main": "index.js", + "keywords": [ + "eslint", + "vue", + "vuejs", + "config", + "nextcloud" + ], + "homepage": "/~https://github.com/nextcloud-libraries/eslint-config#readme", + "bugs": { + "url": "/~https://github.com/nextcloud-libraries/eslint-config/issues" + }, "repository": { "type": "git", "url": "git+/~https://github.com/nextcloud-libraries/eslint-config.git" }, + "license": "AGPL-3.0-or-later", + "author": "Nextcloud GmbH and Nextcloud contributors", + "main": "index.js", "scripts": { "lint": "eslint parts *.js", "lint:fix": "eslint --fix parts *.js", "test": "jest" }, - "peerDependencies": { - "@babel/core": "^7.26.9", - "@babel/eslint-parser": "^7.16.5", - "@nextcloud/eslint-plugin": "^2.2.1", - "@vue/eslint-config-typescript": "^13.0.0", - "eslint": "^8.27.0", - "eslint-config-standard": "^17.1.0", - "eslint-import-resolver-exports": "^1.0.0-beta.5", - "eslint-import-resolver-typescript": "^3.8.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsdoc": "^46.2.6", - "eslint-plugin-n": "^16.0.0", - "eslint-plugin-promise": "^6.6.0", - "eslint-plugin-vue": "^9.7.0", - "typescript": "^5.0.2" + "eslintConfig": { + "extends": "./index.js" + }, + "jest": { + "preset": "ts-jest", + "setupFilesAfterEnv": [ + "./tests/setup-jest.ts" + ], + "testEnvironment": "node" }, "devDependencies": { "@babel/core": "^7.26.9", @@ -49,31 +56,24 @@ "typescript": "^5.7.3", "vue-eslint-parser": "^9.4.3" }, - "keywords": [ - "eslint", - "vue", - "vuejs", - "config", - "nextcloud" - ], - "author": "John Molakvoæ ", - "license": "AGPL-3.0-or-later", - "bugs": { - "url": "/~https://github.com/nextcloud-libraries/eslint-config/issues" + "peerDependencies": { + "@babel/core": "^7.26.9", + "@babel/eslint-parser": "^7.16.5", + "@nextcloud/eslint-plugin": "^2.2.1", + "@vue/eslint-config-typescript": "^13.0.0", + "eslint": "^8.27.0", + "eslint-config-standard": "^17.1.0", + "eslint-import-resolver-exports": "^1.0.0-beta.5", + "eslint-import-resolver-typescript": "^3.8.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsdoc": "^46.2.6", + "eslint-plugin-n": "^16.0.0", + "eslint-plugin-promise": "^6.6.0", + "eslint-plugin-vue": "^9.7.0", + "typescript": "^5.0.2" }, - "homepage": "/~https://github.com/nextcloud-libraries/eslint-config#readme", "engines": { "node": "^20.0.0", "npm": "^10.0.0" - }, - "eslintConfig": { - "extends": "./index.js" - }, - "jest": { - "preset": "ts-jest", - "testEnvironment": "node", - "setupFilesAfterEnv": [ - "./tests/setup-jest.ts" - ] } }