-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
107 lines (107 loc) · 2.84 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
106
107
{
"name": "todotasks",
"displayName": "To Do Tasks",
"description": "A To Do tasks extension for Visual Studio Code",
"version": "0.4.0",
"publisher": "sandy081",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"todo",
"todos",
"tasks"
],
"galleryBanner": {
"color": "#f0efe7",
"theme": "light"
},
"icon": "todotasks.PNG",
"homepage": "https://github.com/sandy081/vscode-todotasks/blob/master/README.md",
"bugs": {
"url": "https://github.com/sandy081/vscode-todotasks/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/sandy081/vscode-todotasks"
},
"activationEvents": [
"onLanguage:todo",
"onCommand:task.new",
"onCommand:task.cancel",
"onCommand:task.complete"
],
"main": "./out/src/TodoExtensionMain",
"contributes": {
"languages": [
{
"id": "todo",
"aliases": [
"Tasks",
"todo"
],
"extensions": [
".todo",
".tasks"
],
"configuration": "./todo.configuration.json"
}
],
"grammars": [
{
"language": "todo",
"scopeName": "text.todo",
"path": "./syntaxes/todo.tmLanguage"
}
],
"commands": [
{
"command": "task.new",
"category": "To Do",
"title": "New Task"
},
{
"command": "task.cancel",
"category": "To Do",
"title": "Cancel Task"
},
{
"command": "task.complete",
"category": "To Do",
"title": "Complete Task"
}
],
"keybindings": [
{
"command": "task.new",
"key": "Ctrl+Enter",
"mac": "Cmd+Enter",
"when": "editorTextFocus"
},
{
"command": "task.cancel",
"key": "Alt+c",
"when": "editorTextFocus"
},
{
"command": "task.complete",
"key": "Alt+d",
"when": "editorTextFocus"
}
]
},
"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"
},
"devDependencies": {
"chai": "^3.5.0",
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}