This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
177 lines (177 loc) · 4.66 KB
/
package.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "vscode-commitizen",
"displayName": "Visual Studio Code Commitizen Support",
"description": "commitizen - git commit with conventions",
"version": "1.1.0",
"publisher": "KnisterPeter",
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"keywords": [
"git",
"commit",
"commitizen",
"changelog",
"conventional-changelog"
],
"activationEvents": [
"onCommand:vscode-commitizen.commit"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "Commitizen configuration",
"properties": {
"commitizen.autoSync": {
"type": "boolean",
"default": false,
"description": "Set to true to automatically sync commit with git (push and pull)."
},
"commitizen.subjectLength": {
"type": "number",
"default": 50,
"description": "Override the allowed commit message subject length."
},
"commitizen.showOutputChannel": {
"type": "string",
"enum": [
"off",
"always",
"onError"
],
"default": "onError",
"description": "Open the output panel after commit."
},
"commitizen.capitalizeWindowsDriveLetter": {
"type": "boolean",
"default": false,
"description": "Set to true to capitalize the Windows drive letter in Git's working directory path. Git treats paths as case sensitive and may ignore [includeIf] attributes in your .gitconfig if drive letters are the wrong case."
},
"commitizen.useGitRoot": {
"type": "boolean",
"default": false,
"description": "Use git root to locate .cz-config.js file via `git rev-parse --show-toplevel`"
},
"commitizen.shell": {
"type": "boolean",
"default": true,
"description": "Set to true to runs file inside of a shell. Uses /bin/sh on UNIX and cmd.exe on Windows."
},
"commitizen.signCommits": {
"type": "boolean",
"default": false,
"description": "Set to true to sign commits by adding the -S flag"
}
}
},
"commands": [
{
"command": "vscode-commitizen.commit",
"title": "Conventional Commits",
"category": "Commitizen",
"icon": "images/commitizen-logo.svg"
}
],
"menus": {
"scm/title": [
{
"when": "scmProvider == git",
"command": "vscode-commitizen.commit",
"group": "navigation"
}
]
}
},
"scripts": {
"linter": "tslint --project .",
"pretest": "yarn vscode:prepublish && yarn linter",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"publish-extension": "vsce publish --yarn --pat $VSCE_TOKEN $(node -e \"console.log(require('./package.json').version)\")"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@knisterpeter/standard-tslint": "1.7.2",
"@types/mocha": "9.1.1",
"@types/node": "20.8.10",
"@types/vscode": "1.83.1",
"@types/wrap-ansi": "8.0.2",
"glob": "8.1.0",
"husky": "7.0.4",
"mocha": "9.2.2",
"prettier": "2.8.8",
"shipjs": "0.26.3",
"tslint": "6.1.3",
"typescript": "4.9.5",
"vsce": "1.103.1",
"vscode-test": "1.6.1"
},
"dependencies": {
"execa": "^5.0.0",
"sander": "^0.6.0",
"wrap-ansi": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KnisterPeter/vscode-commitizen.git"
},
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"license": "MIT",
"icon": "images/commitizen-logo.png",
"bugs": {
"url": "https://github.com/KnisterPeter/vscode-commitizen/issues"
},
"homepage": "https://github.com/KnisterPeter/vscode-commitizen",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"renovate": {
"extends": [
"config:base"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"excludePackagePatterns": [
"@types/vscode"
],
"automerge": true
}
]
}
}