Skip to content

Commit

Permalink
chore: sort package.json (#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jul 30, 2022
1 parent 26e2791 commit cf591ff
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
],
"scripts": {
"build": "babel --extensions .js,.ts src --out-dir lib --copy-files && rimraf lib/__tests__ 'lib/**/__tests__'",
"postinstall": "is-ci || husky install",
"lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts",
"prepack": "rimraf lib && yarn build",
"prepublishOnly": "pinst --disable",
"prettier:check": "prettier --check 'docs/**/*.md' README.md '.github/**' package.json tsconfig.json src/globals.json .yarnrc.yml",
"prettier:write": "prettier --write 'docs/**/*.md' README.md '.github/**' package.json tsconfig.json src/globals.json .yarnrc.yml",
"postpublish": "pinst --enable",
"test": "jest",
"tools:regenerate-docs": "ts-node -T tools/regenerate-docs",
"typecheck": "tsc -p .",
"postinstall": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
"typecheck": "tsc -p ."
},
"commitlint": {
"extends": [
Expand All @@ -48,6 +48,23 @@
"singleQuote": true,
"trailingComma": "all"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"jest": {
"coverageThreshold": {
"global": {
Expand Down Expand Up @@ -134,25 +151,8 @@
"optional": true
}
},
"packageManager": "yarn@3.2.2",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"packageManager": "yarn@3.2.2"
}
}

0 comments on commit cf591ff

Please sign in to comment.