mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-15 16:32:36 +00:00
Initial commit
This commit is contained in:
commit
9e3a503182
18 changed files with 5990 additions and 0 deletions
45
package.json
Normal file
45
package.json
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"name": "repo-template",
|
||||
"version": "1.0.0",
|
||||
"description": "A template for creating new repositories.",
|
||||
"scripts": {
|
||||
"lint": "eslint --ignore-path .prettierignore --ext .ts,.tsx,.js,.jsx,.json .",
|
||||
"lint-file": "eslint --ignore-path .prettierignore",
|
||||
"format": "concurrently \"npm:format:default\"",
|
||||
"format:default": "prettier --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
|
||||
"format-file:default": "prettier --write",
|
||||
"release:changelog": "standard-version --dry-run --skip.commit=true --skip.tag=true",
|
||||
"release:commit": "git commit --allow-empty -m \"chore(release): trigger release process [ci release]\"",
|
||||
"release:message": "chalk -t \"Run {green.bold git push} to publish the release or {red.bold git reset HEAD^} to undo the release.\"",
|
||||
"release": "run-s release:changelog release:commit release:message"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vidavidorra/repo-template.git"
|
||||
},
|
||||
"author": "Jeroen de Bruijn",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/vidavidorra/repo-template/issues"
|
||||
},
|
||||
"homepage": "https://github.com/vidavidorra/repo-template#readme",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "8.3.5",
|
||||
"@commitlint/config-conventional": "8.3.4",
|
||||
"@typescript-eslint/eslint-plugin": "2.24.0",
|
||||
"@typescript-eslint/parser": "2.24.0",
|
||||
"chalk-cli": "4.1.0",
|
||||
"concurrently": "5.1.0",
|
||||
"eslint": "6.8.0",
|
||||
"eslint-config-prettier": "6.10.0",
|
||||
"eslint-plugin-json": "2.1.1",
|
||||
"eslint-plugin-prettier": "3.1.2",
|
||||
"husky": "4.2.3",
|
||||
"lint-staged": "10.0.8",
|
||||
"npm-run-all": "4.1.5",
|
||||
"prettier": "1.19.1",
|
||||
"standard-version": "7.1.0",
|
||||
"typescript": "3.8.3"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue