-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
83 lines (83 loc) · 1.73 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
{
"name": "vscode-tfs",
"main": "./lib/vscode-tfs",
"version": "0.5.3",
"description": "TFS Visual Studio Code integration.",
"author": {
"name": "Ivan Gabriele",
"email": "[email protected]",
"url": "http://www.ivangabriele.com"
},
"license": "MIT",
"keywords": [
"tfs",
"team",
"foundation",
"server",
"microsoft"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivangabriele/vscode-tfs.git"
},
"bugs": {
"url": "https://github.com/ivangabriele/vscode-tfs/issues"
},
"homepage": "https://github.com/ivangabriele/vscode-tfs#readme",
"readmeFilename": "README.md",
"engines": {
"vscode": "^0.10.1"
},
"dependencies": {
"tfs": "^1.4.2"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-githooks": "^0.6.0",
"grunt-jsdoc": "^1.1.0",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^2.1.0",
"mocha": "^2.4.5",
"vscode": "^0.11.10"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "vscode-tfs.list",
"title": "TFS: List Commands"
}
],
"keybindings": [
{
"command": "vscode-tfs.get",
"key": "Alt+G"
},
{
"command": "vscode-tfs.status",
"key": "Alt+S"
},
{
"command": "vscode-tfs.list",
"key": "Alt+T"
}
]
},
"displayName": "TFS",
"publisher": "ivangabriele",
"icon": "res/icon.png",
"galleryBanner": {
"color": "#912a2a",
"theme": "dark"
},
"categories": [
"Other"
]
}