sort package.json

This commit is contained in:
Sparticuz 2023-02-09 11:51:21 -05:00
parent 58460d821c
commit fcfc6b72d8
1 changed files with 32 additions and 43 deletions

View File

@ -1,40 +1,7 @@
{ {
"name": "@sparticuz/chromium", "name": "@sparticuz/chromium",
"version": "110.0.0", "version": "110.0.0",
"author": {
"name": "Kyle McNally"
},
"license": "MIT",
"description": "Chromium Binary for Serverless Platforms", "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": [ "keywords": [
"aws", "aws",
"browser", "browser",
@ -45,18 +12,40 @@
"playwright", "playwright",
"serverless" "serverless"
], ],
"prettier": { "homepage": "https://github.com/Sparticuz/chromium",
"arrowParens": "always", "bugs": {
"bracketSpacing": true, "url": "https://github.com/Sparticuz/chromium/issues"
"jsxBracketSameLine": false, },
"printWidth": 140, "repository": {
"semi": true, "type": "git",
"singleQuote": true, "url": "git://github.com/Sparticuz/chromium.git"
"tabWidth": 2, },
"trailingComma": "es5", "license": "MIT",
"useTabs": false "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": { "dependencies": {
"tar-fs": "^2.1.1" "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"
} }
} }