Skip to content

Commit

Permalink
Merge pull request #818 from ikemo3/feature/sort-package-json
Browse files Browse the repository at this point in the history
feature: add sort-package-json
  • Loading branch information
ikemo3 authored Jul 14, 2023
2 parents 28bf78e + ec03831 commit 6fdfc65
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 20 deletions.
45 changes: 25 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
{
"name": "gossip-site-blocker",
"version": "1.15.2.1",
"author": "Hideki Ikemoto",
"license": "MIT",
"author": "Hideki Ikemoto",
"type": "module",
"scripts": {
"archive": "NODE_OPTIONS='--loader ts-node/esm' ts-node ./scripts/archive.ts",
"build": "pnpm build:webpack && pnpm build:manifest",
"build:manifest": "NODE_OPTIONS='--loader ts-node/esm' ts-node ./scripts/make_manifest.ts",
"build:webpack": "NODE_OPTIONS='--loader ts-node/esm' webpack",
"deploy": "NODE_OPTIONS='--loader ts-node/esm' ts-node scripts/github_release.ts",
"develop": "NODE_OPTIONS='--loader ts-node/esm' webpack --watch",
"fix": "eslint --fix --ext .ts apps scripts test *.ts jest.config.cjs",
"format": "pnpm format:prettier && pnpm format:sort-package-json",
"format:check": "pnpm format:check:prettier && pnpm format:check:sort-package-json",
"format:check:prettier": "prettier --check .",
"format:check:sort-package-json": "sort-package-json --check",
"format:prettier": "prettier --write .",
"format:sort-package-json": "sort-package-json",
"lint:ci": "pnpm format:check && pnpm lint:eslint:ci && pnpm lint:dep",
"lint:dep": "depcruise .",
"lint:eslint": "eslint --ext .ts apps scripts test *.ts jest.config.cjs",
"lint:eslint:ci": "eslint --format junit --output-file ./reports/eslint/eslint.xml --ext .ts apps scripts test *.ts jest.config.cjs",
"test": "jest"
},
"dependencies": {
"tabbyjs": "^12.0.3"
},
"devDependencies": {
"@types/chrome": "0.0.241",
"@types/jest": "^29.5.3",
Expand All @@ -22,6 +45,7 @@
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"sort-package-json": "^2.5.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
Expand All @@ -30,24 +54,5 @@
"webpack-cli": "^5.1.4",
"zip-a-folder": "2.0.0"
},
"scripts": {
"archive": "NODE_OPTIONS='--loader ts-node/esm' ts-node ./scripts/archive.ts",
"build": "pnpm build:webpack && pnpm build:manifest",
"build:manifest": "NODE_OPTIONS='--loader ts-node/esm' ts-node ./scripts/make_manifest.ts",
"build:webpack": "NODE_OPTIONS='--loader ts-node/esm' webpack",
"develop": "NODE_OPTIONS='--loader ts-node/esm' webpack --watch",
"deploy": "NODE_OPTIONS='--loader ts-node/esm' ts-node scripts/github_release.ts",
"fix": "eslint --fix --ext .ts apps scripts test *.ts jest.config.cjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:eslint": "eslint --ext .ts apps scripts test *.ts jest.config.cjs",
"lint:eslint:ci": "eslint --format junit --output-file ./reports/eslint/eslint.xml --ext .ts apps scripts test *.ts jest.config.cjs",
"lint:ci": "pnpm format:check && pnpm lint:eslint:ci && pnpm lint:dep",
"lint:dep": "depcruise .",
"test": "jest"
},
"dependencies": {
"tabbyjs": "^12.0.3"
},
"packageManager": "[email protected]"
}
44 changes: 44 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6fdfc65

Please sign in to comment.