-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.53 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "github-templates",
"version": "1.0.0",
"description": "Contribution Guidelines",
"main": "index.js",
"scripts": {
"test": "echo no-test",
"lint": "run-s lint:prettier:check",
"lint:fix": "run-s lint:prettier:fix",
"lint:prettier:check": "prettier --check \"**/*.{css,html,js,json,jsx,md,sass,scss,ts,tsx,vue,yaml,yml}\"",
"lint:prettier:fix": "prettier --write \"**/*.{css,html,js,json,jsx,md,sass,scss,ts,tsx,vue,yaml,yml}\"",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:reset": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prerelease": "run-s lint test",
"release-it": "release-it",
"release": "run-s \"release-it -- --ci --git.requireBranch=prod {1}\" --",
"release:canary": "run-s \"release-it -- {2} --preRelease={1} --ci\" -- "
},
"repository": {
"type": "git",
"url": "git+https://github.com/refrens/.github.git"
},
"author": "Refrens",
"license": "UNLICENCED",
"bugs": {
"url": "https://github.com/refrens/.github/issues"
},
"homepage": "https://github.com/refrens/.github#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"commitiquette": "^1.0.9",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"post-merge-install": "^0.4.0",
"prettier": "^2.2.1",
"release-it": "^14.3.0"
},
"husky": {
"hooks": {
"post-merge": "post-merge-install",
"post-rebase": "post-merge-install",
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,mjs}": [
"prettier --write"
],
"**/*.{json,css,html,md,sass,scss,vue,yaml,yml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "commitiquette"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}",
"requireBranch": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"npm": {
"publish": false
}
},
"dependencies": {
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"node-fetch": "^3.3.2",
"octokit": "^3.1.2"
}
}