-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.36 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
{
"name": "symfony-code-snippets",
"displayName": "Symfony code snippets And Twig Support & Yaml",
"icon": "icon.png",
"description": "Over 80 Symfony Code Snippets for PhP code And Over 80 Twig Code Snippets.\r Just type the letters 'sy' to get a list of all available Symfony Code Snippets.\rFor Twig Just Type the Tag name and you will get AutoCompletion. ",
"publisher": "nadim-vscode",
"author": {
"name": "Nadim Al Abdou",
"url": "https://nalabdou.com"
},
"homepage": "https://github.com/nalabdou/Symfony-code-snippets/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/nalabdou/Symfony-code-snippets"
},
"bugs": "https://github.com/nalabdou/Symfony-code-snippets/issues",
"version": "0.2.4",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Snippets",
"Language Packs",
"Programming Languages",
"Extension Packs",
"Other"
],
"keywords": [
"twig",
"snippets",
"completion",
"template",
"symfony",
"php",
"yaml"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"snippets": [
{
"language": "twig",
"path": "./snippets/filters.json"
},
{
"language": "twig",
"path": "./snippets/twig.json"
},
{
"language": "twig",
"path": "./snippets/functions.json"
},
{
"language": "html",
"path": "./snippets/filters.json"
},
{
"language": "html",
"path": "./snippets/twig.json"
},
{
"language": "html",
"path": "./snippets/functions.json"
},
{
"language": "php",
"path": "./snippets/symfony.json"
},
{
"language": "yaml",
"path": "./snippets/yaml.json"
}
],
"languages": [
{
"id": "twig",
"aliases": [
"HTML (Twig)",
"twig"
],
"extensions": [
".twig",
".html.twig"
],
"configuration": "./twig.configuration.json"
}
],
"grammars": [
{
"language": "twig",
"scopeName": "text.html.twig",
"path": "./syntaxes/twig.tmLanguage",
"embeddedLanguages": {
"source.json": "json",
"source.css": "css",
"source.css.scss": "scss",
"source.js": "javascript",
"source.ts": "typescript"
}
},
{
"language": "html",
"scopeName": "text.html.twig",
"path": "./syntaxes/twig.tmLanguage"
}
]
},
"devDependencies": {
"vscode": "^1.1.36"
}
}