-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 3.87 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "vscode-planner",
"displayName": "Planner",
"description": "Simple Planning in Markdown",
"license": "BSD-3-Clause",
"version": "0.3.7",
"author": {
"name": "Pasqualino `Titto` Assini"
},
"publisher": "tittoassini",
"icon": "image/planner.png",
"engines": {
"vscode": "^1.21.0"
},
"homepage": "https://github.com/tittoassini/vscode-planner",
"repository": {
"type": "git",
"url": "https://github.com/tittoassini/vscode-planner.git"
},
"bugs": {
"url": "https://github.com/tittoassini/vscode-planner/issues"
},
"categories": [
"Other"
],
"keywords": [
"planning",
"markdown",
"org",
"tasks",
"todo"
],
"galleryBanner": {
"color": "#CFB69A",
"theme": "light"
},
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "planner.selectSection",
"title": "Select Block",
"category": "Planner"
},
{
"command": "planner.saveToGoogleCalendar",
"title": "Save Task to Google Calendar",
"category": "Planner"
},
{
"command": "planner.showInGoogleCalendar",
"title": "Show Task in Google Calendar",
"category": "Planner"
},
{
"command": "planner.readFromGoogleTasks",
"title": "Retrieve Google Tasks",
"category": "Planner"
}
],
"keybindings": [
{
"command": "planner.selectSection",
"key": "ctrl+a",
"mac": "cmd+a",
"when": "editorTextFocus && editorLangId == markdown"
},
{
"command": "planner.saveToGoogleCalendar",
"key": "ctrl+e ctrl+c",
"mac": "cmd+e cmd+c",
"when": "editorTextFocus && editorLangId == markdown"
},
{
"command": "planner.showInGoogleCalendar",
"key": "ctrl+s ctrl+c",
"mac": "cmd+s cmd+c",
"when": "editorTextFocus && editorLangId == markdown"
},
{
"command": "planner.readFromGoogleTasks",
"key": "ctrl+i ctrl+t",
"mac": "cmd+i cmd+t",
"when": "editorTextFocus && editorLangId == markdown"
}
],
"views": {
"explorer": [
{
"id": "TodoView",
"name": "TO DO",
"when": "mdContext"
}
]
},
"snippets": [
{
"language": "markdown",
"path": "./snippets.json"
}
],
"grammars": [
{
"path": "./syntaxes/injection.json",
"scopeName": "text.planner",
"injectTo": [
"comment.line.double-slash.js",
"text.html.markdown"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm audit fix;npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test && npm run doctest",
"pack": "rm *.vsix;vsce package",
"release": "npm run pack;standard-version;git commit -am \"release\";git push --follow-tags origin master;git status;vsce publish",
"doctest": "doctest-ts --tape src/*.ts;npm run compile;find src -name \"*.doctest.ts\" | xargs -n 1 ts-node | tap-diff",
"tslint": "tslint -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'",
"tslint-fix": "tslint --fix -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.9",
"@types/tape": "^4.2.33",
"chai": "^4.2.0",
"doctest-ts": "^0.3.0",
"mocha": "^5.2.0",
"standard-version": "^7.1.0",
"tap-diff": "^0.1.1",
"tape": "^4.13.0",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"vscode": "^1.1.36"
},
"dependencies": {
"@types/markdown-it": "0.0.4",
"markdown-it": "^8.4.2"
}
}