-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"name": "markdown-code-blocks",
"displayName": "Markdown Code Blocks",
"icon": "logo@0.25x.png",
"version": "1.0.1",
"description": "Generate a Markdown code block using code-snippets.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keystion/vscode-markdown-code-snippets.git"
},
"keywords": [
"vscode",
"extension"
],
"author": "Yantao Shang",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Keystion/vscode-markdown-code-snippets/issues"
},
"homepage": "https://github.com/Keystion/vscode-markdown-code-snippets#readme",
"engines": {
"vscode": "^1.60.0"
},
"main": "extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"snippets": [
{
"language": "markdown",
"path": "snippets.json"
}
]
},
"publisher": "YantaoShang",
"devDependencies": {
"vscode": "^1.1.37"
}
}