-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
{
"name": "git-tools",
"displayName": "Git Tools",
"description": "Simple tool to open Git Gui, Gitk and Git Blame.",
"version": "1.0.0",
"publisher": "ankalus",
"repository" : {
"type" : "git",
"url" : "https://github.com/ankalus/git-tools-vsc"
},
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.gitK",
"onCommand:extension.gitKCurrentFile",
"onCommand:extension.gitGui",
"onCommand:extension.gitGuiBlame",
"onCommand:extension.gitCurrentCheckout"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.gitK",
"title": "Git Tools: GitK"
},
{
"command": "extension.gitKCurrentFile",
"title": "Git Tools: GitK Current File"
},
{
"command": "extension.gitGui",
"title": "Git Tools: Git Gui"
},
{
"command": "extension.gitGuiBlame",
"title": "Git Tools: Git Gui Blame"
},
{
"command": "extension.gitCurrentCheckout",
"title": "Git Tools: Git checkout current file"
}
],
"configuration": {
"type": "object",
"title": "Git Tools configuration",
"properties": {
"gitTools.gitkArgs": {
"type": "string",
"default": " --all",
"scope": "window",
"description": "Arguments for gitk"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}