-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (99 loc) · 4.18 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "currenttodos",
"displayName": "current TODOs",
"description": "Highlights and show in status bar annotations like TODO, FIXME and etc",
"version": "0.2.0",
"publisher": "MakhmudovEvgeniy",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"icon": "media/icon.png",
"contributes": {
"commands": [
{
"command": "currenttodos.refresh",
"title": "Refresh"
}
],
"configuration": {
"type": "object",
"title": "currentTODOs",
"properties": {
"currenttodos.enable": {
"type": "boolean",
"default": true,
"description": "Enable extension"
},
"currenttodos.isCaseSensitive": {
"type": "boolean",
"default": true,
"description": "Specify whether the keywords are case sensitive or not"
},
"currenttodos.keywords": {
"type": "array",
"description": "Customize keywords and colors. Any css color identifier is valid.",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Custom text to be highlighted"
},
"color": {
"type": "string",
"description": "The text color. Besides, you can play with all the string and boolean styling properties provied by VS Code API. See all available properties: https://code.visualstudio.com/docs/extensionAPI/vscode-api#_a-namedecorationrenderoptionsaspan-classcodeitem-id280decorationrenderoptionsspan ."
},
"backgroundColor": {
"type": "string",
"description": "The text background color. See all available properties: https://code.visualstudio.com/docs/extensionAPI/vscode-api#_a-namedecorationrenderoptionsaspan-classcodeitem-id280decorationrenderoptionsspan ."
},
"overviewRulerColor": {
"type": "string",
"description": "The color of the ruler mark on the scroll bar. Use rgba() and define transparent colors to play well with other decorations. See all available properties: https://code.visualstudio.com/docs/extensionAPI/vscode-api#_a-namedecorationrenderoptionsaspan-classcodeitem-id280decorationrenderoptionsspan ."
}
}
},
"default": [
{
"text": "TODO:",
"color": "#FFF",
"backgroundColor": "#E97F02",
"overviewRulerColor": "rgba(233,127,2,0.75)"
},
{
"text": "FIXME:",
"color": "#FFF",
"backgroundColor": "#BD1550",
"overviewRulerColor": "rgba(189,21,80,0.75)"
},
{
"text": "NOTE:",
"color": "#FFF",
"backgroundColor": "#8A9B0F",
"overviewRulerColor": "rgba(138,155,15,0.75)"
}
]
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
}
}