-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.41 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
{
"name": "whitespace-plus",
"displayName": "Whitespace+",
"description": "Clearly mark whitespace characters (including trailing) and custom patterns.",
"version": "0.0.5",
"publisher": "davidhouchin",
"readme": "README.md",
"icon": "icon.png",
"license": "LICENSE",
"keywords": [
"whitespace",
"regex",
"pattern",
"highlight",
"trailing"
],
"bugs": {
"url": "https://www.github.com/davidhouchin/whitespace-plus/issues"
},
"homepage": "https://github.com/davidhouchin/whitespace-plus/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://www.github.com/davidhouchin/whitespace-plus.git"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "extension.toggleWhitespacePlus",
"title": "Whitespace+ Toggle"
},{
"command": "extension.toggleWhitespacePlusMode",
"title": "Whitespace+ Mode"
},{
"command": "extension.configWhitespacePlus",
"title": "Whitespace+ Config"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}