From 8e526384b954d6ca27fdbf20cae942c716f2c2d0 Mon Sep 17 00:00:00 2001 From: Lipis Date: Sat, 18 Jan 2020 03:02:14 +0200 Subject: [PATCH] Sort package.json (#438) * Sort package.json * Keywords --- package.json | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/package.json b/package.json index 7ce3134a..468ba5c1 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "excalidraw", - "homepage": "https://excalidraw.com", - "version": "1.0.0", - "description": "", - "keywords": [], - "main": "src/index.js", + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ], "dependencies": { "nanoid": "2.1.9", "react": "16.12.0", @@ -12,6 +12,7 @@ "react-scripts": "3.3.0", "roughjs": "4.0.4" }, + "description": "", "devDependencies": { "@types/jest": "24.9.0", "@types/nanoid": "2.1.0", @@ -24,25 +25,10 @@ "prettier": "1.19.1", "typescript": "3.7.5" }, - "scripts": { - "build": "react-scripts build", - "eject": "react-scripts eject", - "fix": "npm run prettier -- --write", - "prettier": "prettier \"**/*.{js,css,scss,json,md,ts,tsx,html,yml}\"", - "start": "react-scripts start", - "test:app": "react-scripts test --env=jsdom --passWithNoTests", - "test:code": "npm run prettier -- --list-different", - "test": "npm run test:app" - }, - "browserslist": [ - ">0.2%", - "not dead", - "not ie <= 11", - "not op_mini all" - ], "eslintConfig": { "extends": "react-app" }, + "homepage": "https://excalidraw.com", "husky": { "hooks": { "pre-commit": "lint-staged" @@ -56,5 +42,18 @@ "*.{js,ts,tsx}": [ "eslint --max-warnings 0" ] - } + }, + "main": "src/index.js", + "name": "excalidraw", + "scripts": { + "build": "react-scripts build", + "eject": "react-scripts eject", + "fix": "npm run prettier -- --write", + "prettier": "prettier \"**/*.{js,css,scss,json,md,ts,tsx,html,yml}\"", + "start": "react-scripts start", + "test": "npm run test:app", + "test:app": "react-scripts test --env=jsdom --passWithNoTests", + "test:code": "npm run prettier -- --list-different" + }, + "version": "1.0.0" }