-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #818 from ikemo3/feature/sort-package-json
feature: add sort-package-json
- Loading branch information
Showing
2 changed files
with
69 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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", | ||
|
@@ -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]" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.