-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
{
"name": "git-commit-formatter",
"displayName": "Git Commit Message Formatter",
"version": "1.1.1",
"description": "Format commit messages from the source control input box",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"package": "npx vsce package",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.31",
"@types/vscode": "^1.81.0",
"mocha": "^10.7.3",
"typescript": "^4.2.3"
},
"dependencies": {
"@bendera/commit-message-formatter": "^0.7.0"
},
"engines": {
"vscode": "^1.83.0"
},
"activationEvents": [
"onLanguage:scminput"
],
"repository": {
"url": "https://github.com/joyceerhl/vscode-git-fit-commit"
},
"contributes": {
"configuration": {
"title": "Git Commit",
"properties": {
"gitCommit.subjectLine.overflowStrategy": {
"type": "string",
"enum": [
"truncate",
"truncate-ellipses",
"split",
"split-ellipses"
],
"default": "split",
"markdownDescription": "%gitCommit.subjectLine.overflowStrategy%"
},
"gitCommit.subjectLine.lint.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%gitCommit.subjectLine.lint.enabled%"
},
"gitCommit.collapseMultipleEmptyLines.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%gitCommit.collapseMultipleEmptyLines.enabled%"
},
"gitCommit.subjectLine.lint.types": {
"type": "array",
"default": [
"fix",
"feat",
"build",
"chore",
"ci",
"docs",
"style",
"refactor",
"perf",
"test",
"revert"
],
"markdownDescription": "%gitCommit.subjectLine.lint.types%"
}
}
}
},
"author": "Joyce Er",
"publisher": "joyceerhl",
"license": "MIT"
}