-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
105 lines (105 loc) · 2.95 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
100
101
102
103
104
105
{
"name": "vscode-todo-parser",
"displayName": "TODO Parser",
"description": "Parse TODOs in your working files.",
"version": "1.9.1",
"publisher": "minhthai",
"engines": {
"vscode": "^1.2.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "^0.11.x"
},
"contributes": {
"commands": [
{
"command": "extension.parseAllFiles",
"title": "Parse TODOs (all files)"
},
{
"command": "extension.parseCurrentFile",
"title": "Parse TODOs (current document)"
},
{
"command": "extension.cancelParseAllFiles",
"title": "Cancel TODOs Parser"
}
],
"configuration": {
"type": "object",
"title": "TodoParser configuration",
"properties": {
"TodoParser": {
"type": "object",
"description": "Configurations for the extension.",
"properties": {
"markers": {
"type": "array",
"description": "An array of words that signal the start of TODOs, or tuples containig the words and their priorities.",
"items": {
"type": [
"string",
"array"
],
"description": "Word that signals the start of a TODO comment, or a tuple of the word and comment priority.",
"items": [
{
"type": "string",
"description": "Word that signals the start of a TODO comment."
},
{
"enum": [
"Error",
0,
"Warning",
1,
"Information",
2,
"Hint",
3
],
"description": "The priority level of the TODO comment. Determines how the TODO item is rendered in the Problems panel"
}
]
}
},
"showInProblems": {
"type": "boolean",
"description": "If true, show TODO comments in Problems panel."
}
}
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/kantlove/vscode-todo-parser.git"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#ecf0f1",
"theme": "light"
},
"dependencies": {
"chance": "^1.0.4",
"fs-extra": "^0.30.0",
"typescript": "^1.8.10",
"typescript-collections": "^1.1.2"
},
"license": "SEE LICENSE IN LICENSE"
}