forked from Anthonykung/GitSave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 3.51 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
{
"name": "gitsave",
"displayName": "GitSave",
"description": "Automatically commit to Git on save",
"version": "2.1.2",
"publisher": "Anthonykung",
"bugs": {
"url": "https://github.com/Anthonykung/GitSave/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Anthonykung/GitSave.git"
},
"homepage": "https://github.com/Anthonykung/GitSave/blob/master/README.md",
"engines": {
"vscode": "^1.52.0"
},
"license": "Apache-2.0",
"icon": "images/GitSave.png",
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:gitsave.reactivate"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "gitsave.reactivate",
"title": "GitSave: Reactivate (Updates the user settings)"
},
{
"command": "gitsave.gpgtest",
"title": "GitSave: GPG Test"
},
{
"command": "gitsave.enable",
"title": "GitSave: Enable"
},
{
"command": "gitsave.disable",
"title": "GitSave: Disable"
},
{
"command": "gitsave.show",
"title": "GitSave: Show commit terminal"
},
{
"command": "gitsave.hide",
"title": "GitSave: Hide commit terminal"
},
{
"command": "gitsave.useTerminal",
"title": "GitSave: Use VS Code terminal"
},
{
"command": "gitsave.notUseTerminal",
"title": "GitSave: Do not use VS Code terminal"
},
{
"command": "gitsave.hideDisableMessage",
"title": "GitSave: Hide disabled message"
}
],
"configuration": {
"title": "GitSave",
"properties": {
"gitSave.operation.enableByDefault": {
"type": "boolean",
"default": false,
"markdownDescription": "Set whether to enable GitSave by default"
},
"gitSave.operation.enableCommitSigning": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable or disable GPG commit signing"
},
"gitSave.operation.enablePushOnCommit": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable Git push on commit"
},
"gitSave.operation.useTerminal": {
"type": "boolean",
"default": false,
"markdownDescription": "Use VS Code Terminal for commit"
},
"gitSave.operation.showCommitTerminal": {
"type": "boolean",
"default": false,
"markdownDescription": "Show terminal on commit"
},
"gitSave.customization.commitMessage": {
"type": "string",
"default": "Update at [: timestamp :]",
"markdownDescription": "Customize your commit message, use [: fileName :] and [: timestamp :]"
},
"gitSave.notification.showDisabledMessages": {
"type": "boolean",
"default": true,
"markdownDescription": "Shows a message if GitSave is not enabled"
},
"gitSave.notification.showActivationMessages": {
"type": "boolean",
"default": false,
"markdownDescription": "Shows a message whenever GitSave is activated"
},
"gitSave.notification.showCommitMessages": {
"type": "boolean",
"default": false,
"markdownDescription": "Shows a message when GitSave commit is called"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.52.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.3",
"vscode-test": "^1.4.1"
},
"dependencies": {
"child_processes": "^0.1.0",
"fs": "0.0.1-security",
"typescript": "^4.1.3"
}
}