From fcfc6b72d8fb270bb0a8b40f686108999af92fc1 Mon Sep 17 00:00:00 2001 From: Sparticuz Date: Thu, 9 Feb 2023 11:51:21 -0500 Subject: [PATCH] sort package.json --- package.json | 75 ++++++++++++++++++++++------------------------------ 1 file changed, 32 insertions(+), 43 deletions(-) diff --git a/package.json b/package.json index 20d4544..cecef12 100644 --- a/package.json +++ b/package.json @@ -1,40 +1,7 @@ { "name": "@sparticuz/chromium", "version": "110.0.0", - "author": { - "name": "Kyle McNally" - }, - "license": "MIT", "description": "Chromium Binary for Serverless Platforms", - "main": "build/index.js", - "types": "build/index.d.ts", - "type": "commonjs", - "files": [ - "bin", - "build" - ], - "engines": { - "node": ">= 14.18.0" - }, - "scripts": { - "test": "make clean && make && make pretest && make test", - "build": "rm -rf build && tsc -p tsconfig.json" - }, - "devDependencies": { - "@tsconfig/node14": "^1.0.3", - "@types/node": "^18.11.18", - "@types/tar-fs": "^2.0.1", - "clean-modules": "^2.0.6", - "typescript": "^4.9.4" - }, - "bugs": { - "url": "https://github.com/Sparticuz/chromium/issues" - }, - "homepage": "https://github.com/Sparticuz/chromium", - "repository": { - "type": "git", - "url": "git://github.com/Sparticuz/chromium.git" - }, "keywords": [ "aws", "browser", @@ -45,18 +12,40 @@ "playwright", "serverless" ], - "prettier": { - "arrowParens": "always", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "printWidth": 140, - "semi": true, - "singleQuote": true, - "tabWidth": 2, - "trailingComma": "es5", - "useTabs": false + "homepage": "https://github.com/Sparticuz/chromium", + "bugs": { + "url": "https://github.com/Sparticuz/chromium/issues" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sparticuz/chromium.git" + }, + "license": "MIT", + "author": { + "name": "Kyle McNally" + }, + "type": "commonjs", + "main": "build/index.js", + "types": "build/index.d.ts", + "files": [ + "bin", + "build" + ], + "scripts": { + "build": "rm -rf build && tsc -p tsconfig.json", + "test": "make clean && make && make pretest && make test" }, "dependencies": { "tar-fs": "^2.1.1" + }, + "devDependencies": { + "@tsconfig/node14": "^1.0.3", + "@types/node": "^18.11.18", + "@types/tar-fs": "^2.0.1", + "clean-modules": "^2.0.6", + "typescript": "^4.9.4" + }, + "engines": { + "node": ">= 14.18.0" } }