forked from opista/svn-blamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "blamer-vs",
"displayName": "SVN Gutter",
"description": "Visually blame SVN-stored code line-by-line",
"version": "0.5.0",
"publisher": "beaugust",
"repository": {
"type": "git",
"url": "https://github.com/BeauAgst/blamer-vs.git"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"SCM Providers",
"Other"
],
"activationEvents": [
"onCommand:extension.blameFile"
],
"main": "./extension",
"contributes": {
"keybindings": [
{
"command": "extension.blameFile",
"key": "ctrl+alt+d",
"mac": "ctrl+cmd+x",
"when": "editorTextFocus"
}
],
"commands": [
{
"command": "extension.blameFile",
"title": "SVN Gutter - Show Blame"
},
{
"command": "extension.clearBlame",
"title": "SVN Gutter - Clear Blame"
}
],
"configuration": {
"type": "object",
"title": "SVN Gutter configuration",
"properties": {
"svn-gutter.enablePips": {
"type": "boolean",
"default": true,
"description": "Enable/Disable visual 'pip' decoration, that sits alongside the line number."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"typescript": "^3.5.1",
"vscode": "^1.1.36"
},
"dependencies": {}
}