Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Commit

Permalink
Add sort-package-json (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwojcik committed May 19, 2022
1 parent 9c15afe commit 5f0c078
Showing 1 changed file with 29 additions and 28 deletions.
57 changes: 29 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,7 @@
{
"name": "react-twitch-ext-onauthorized",
"version": "3.0.2",
"version": "3.0.3",
"description": "React hook handling authorization with Twitch Extensions JavaScript Helper",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"checkFormat": "prettier --check .",
"clearTestCache": "jest --clearCache",
"clean": "rimraf dist/*",
"dev": "tsc -w",
"compile": "rollup -c",
"build": "npm run lint && npm run test && npm run clean && npm run compile",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukemnet/react-twitch-ext-onauthorized.git"
},
"keywords": [
"react",
"hook",
Expand All @@ -30,15 +11,38 @@
"authorization",
"onauthorized"
],
"homepage": "https://github.com/lukemnet/react-twitch-ext-onauthorized#readme",
"bugs": {
"url": "https://github.com/lukemnet/react-twitch-ext-onauthorized/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukemnet/react-twitch-ext-onauthorized.git"
},
"license": "MIT",
"author": {
"name": "Łukasz Wójcik",
"url": "https://www.lukem.net/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukemnet/react-twitch-ext-onauthorized/issues"
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && npm run test && npm run clean && npm run compile",
"checkFormat": "prettier --check .",
"clean": "rimraf dist/*",
"clearTestCache": "jest --clearCache",
"compile": "rollup -c",
"dev": "tsc -w",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"test": "jest"
},
"lint-staged": {
"package.json": "sort-package-json",
"*.ts": "eslint --cache --fix"
},
"homepage": "https://github.com/lukemnet/react-twitch-ext-onauthorized#readme",
"dependencies": {
"react": "^18.0.0"
},
Expand All @@ -62,11 +66,8 @@
"rollup": "^2.74.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"lint-staged": {
"package.json": "sort-package-json",
"*.ts": "eslint --cache --fix"
}
}

0 comments on commit 5f0c078

Please sign in to comment.