-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.26 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
{
"name": "javascript-snippets",
"displayName": "javaScript Code Snippets",
"description": "This extension contains over 400 code snippets for JavaScript, supports JavaScript and html & php files",
"version": "1.0.0",
"icon": "icon.png",
"publisher": "nadim-vscode",
"author": {
"name": "Nadim Al Abdou",
"url": "https://nalabdou.com"
},
"homepage": "https://github.com/nalabdou/javascript-snippets/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/nalabdou/javascript-snippets"
},
"bugs": "https://github.com/nalabdou/javascript-snippets/issues",
"engines": {
"vscode": "^1.45.0"
},
"qna": "marketplace",
"keywords": [
"javascript",
"js",
"js snippets",
"javascript snippets",
"javascript autocomplete",
"js autocomplete",
"javaScript"
],
"categories": [
"Snippets",
"Language Packs"
],
"activationEvents": [
"*"
],
"galleryBanner": {
"color": "#353091",
"theme": "dark"
},
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/js-glob.code-snippets"
},
{
"language": "html",
"path": "./snippets/js-glob.code-snippets"
},
{
"language": "php",
"path": "./snippets/js-glob.code-snippets"
}
]
}
}