-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
205 lines (205 loc) · 6.13 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"name": "coc-emmet",
"version": "1.1.6",
"description": "emmet extension for coc",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"emmet",
"html",
"css"
],
"engines": {
"coc": "^0.0.79"
},
"scripts": {
"clean": "rimraf lib",
"build": "webpack",
"prepare": "webpack"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Emmet",
"properties": {
"emmet.showExpandedAbbreviation": {
"type": [
"string"
],
"enum": [
"never",
"always",
"inMarkupAndStylesheetFilesOnly"
],
"default": "always",
"markdownDescription": "Shows expanded Emmet abbreviations as suggestions."
},
"emmet.showAbbreviationSuggestions": {
"type": "boolean",
"default": true,
"markdownDescription": "Shows possible Emmet abbreviations as suggestions. Not applicable in stylesheets or when emmet.showExpandedAbbreviation is 'never'."
},
"emmet.includeLanguages": {
"type": "object",
"default": {},
"markdownDescription": "Enable Emmet abbreviations in languages that are not supported by default. Add a mapping here between the language and emmet supported language. E.g.: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`"
},
"emmet.variables": {
"type": "object",
"properties": {
"lang": {
"type": "string",
"default": "en"
},
"charset": {
"type": "string",
"default": "UTF-8"
}
},
"default": {},
"description": "Variables to be used in Emmet snippets"
},
"emmet.syntaxProfiles": {
"type": "object",
"default": {},
"description": "Define profile for specified syntax or use your own profile with specific rules."
},
"emmet.excludeLanguages": {
"type": "array",
"default": [
"markdown"
],
"description": "An array of languages where Emmet abbreviations should not be expanded."
},
"emmet.extensionsPath": {
"type": "string",
"default": null,
"description": "Path to a folder containing Emmet profiles and snippets."
},
"emmet.showSuggestionsAsSnippets": {
"type": "boolean",
"default": true,
"markdownDescription": "Show emmet completion items as snippet kind."
},
"emmet.preferences": {
"type": "object",
"default": {},
"description": "Preferences used to modify behavior of some actions and resolvers of Emmet.",
"properties": {
"css.intUnit": {
"type": "string",
"default": "px"
},
"css.floatUnit": {
"type": "string",
"default": "em"
},
"css.propertyEnd": {
"type": "string",
"default": ";"
},
"sass.propertyEnd": {
"type": "string",
"default": ""
},
"stylus.propertyEnd": {
"type": "string",
"default": ""
},
"css.valueSeparator": {
"type": "string",
"default": ": "
},
"sass.valueSeparator": {
"type": "string",
"default": ": "
},
"stylus.valueSeparator": {
"type": "string",
"default": " "
},
"bem.elementSeparator": {
"type": "string",
"default": "__"
},
"bem.modifierSeparator": {
"type": "string",
"default": "_"
},
"filter.commentBefore": {
"type": "string",
"default": ""
},
"filter.commentAfter": {
"type": "string",
"default": "\n<!-- /[#ID][.CLASS] -->"
},
"filter.commentTrigger": {
"type": "array",
"default": [
"id",
"class"
]
},
"format.noIndentTags": {
"type": "array",
"default": [
"html"
]
},
"format.forceIndentationForTags": {
"type": "array",
"default": [
"body"
]
},
"profile.allowCompactBoolean": {
"type": "boolean",
"default": false
},
"css.fuzzySearchMinScore": {
"type": "number",
"default": 0.3
}
}
},
"emmet.optimizeStylesheetParsing": {
"type": "boolean",
"default": true,
"markdownDescription": "When set to `false`, the whole file is parsed to determine if current position is valid for expanding Emmet abbreviations. When set to `true`, only the content around the current position in css/scss/less files is parsed."
},
"emmet.priority": {
"type": "integer",
"default": 3,
"description": "Priority of emmet completion source, change to 100 for higher priority than languageserver."
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@chemzqm/tslint-config": "^1.0.18",
"@types/node": "^10.14.7",
"coc.nvim": "^0.0.80",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.3",
"tslint": "^5.16.0",
"typescript": "^3.4.4",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"@emmetio/css-parser": "ramya-rao-a/css-parser#vscode",
"@emmetio/html-matcher": "^0.3.3",
"@emmetio/math-expression": "^0.1.1",
"vscode-languageserver-protocol": "^3.15.0-next.5",
"vscode-uri": "^1.0.6"
},
"dependencies": {
"vscode-emmet-helper": "^1.2.15"
}
}