-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 871 Bytes
/
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
{
"name": "algorithm-mnemonics-vscode",
"displayName": "C++ Algorithm Mnemonics",
"description": "C++ Algorithm Mnemonics as VSCode snippets.",
"version": "1.0.3",
"publisher": "davidbroetje",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidbroetje/algorithm-mnemonics-vscode"
},
"bugs": {
"url": "https://github.com/davidbroetje/algorithm-mnemonics-vscode/issues"
},
"icon": "images/AMN-icon.png",
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "cpp",
"path": "./snippets/cpp.json"
}
]
},
"keywords": [
"c++",
"cpp",
"snippet",
"std",
"stl"
]
}