-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "gitblame",
"displayName": "Git Blame",
"description": "See git blame information in the status bar.",
"version": "1.3.0",
"publisher": "waderyan",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#f0efe7",
"theme": "light"
},
"icon": "images/git_icon.png",
"activationEvents": [
"*"
],
"keywords": [
"git", "gitblame", "blame"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"dependencies": {
"git-blame": "^0.1.1",
"moment": "^2.10.6",
"path": "^0.12.7",
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"homepage": "https://github.com/wadeanderson7/vscode-gitblame/blob/master/README.md",
"bugs": {
"url": "https://github.com/wadeanderson7/vscode-gitblame/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/wadeanderson7/vscode-gitblame"
},
"contributes": {
"commands": [{
"command": "extension.blame",
"title": "Git Blame"
}]
}
}