vscode/extensions/xml/package.json

91 lines
1.6 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"name": "xml",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "xml",
2015-11-29 02:13:23 +00:00
"extensions": [
".ascx",
".atom",
2015-11-29 02:14:35 +00:00
".axml",
".bpmn",
2015-11-29 02:13:23 +00:00
".config",
2015-11-29 02:14:35 +00:00
".cpt",
".csl",
".csproj",
".csproj.user",
".dita",
".ditamap",
".dtd",
".dtml",
".fsproj",
".fxml",
".iml",
".isml",
".jmx",
".launch",
".menu",
".mxml",
".nuspec",
".opml",
".owl",
".proj",
".pt",
".pubxml",
".pubxml.user",
".rdf",
".rng",
".rss",
".shproj",
".storyboard",
".svg",
".targets",
".tld",
".vbproj",
".vbproj.user",
".vcxproj",
".vcxproj.filters",
".wsdl",
2015-11-29 02:13:23 +00:00
".wxi",
".wxl",
".wxs",
".xaml",
2015-11-29 02:14:35 +00:00
".xbl",
".xib",
".xlf",
".xliff",
".xml",
".xpdl",
".xsd",
".xul",
".xoml"
2015-11-29 02:13:23 +00:00
],
2015-11-13 13:39:38 +00:00
"firstLine" : "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
"aliases": [ "XML", "xml" ],
"configuration": "./xml.language-configuration.json"
2015-11-13 13:39:38 +00:00
}, {
"id": "xsl",
2015-11-29 02:13:23 +00:00
"extensions": [
".xsl",
".xslt"
],
2015-11-13 13:39:38 +00:00
"aliases": [ "XSL", "xsl" ],
"configuration": "./xsl.language-configuration.json"
2015-11-13 13:39:38 +00:00
}],
"grammars": [{
"language": "xml",
"scopeName": "text.xml",
"path": "./syntaxes/xml.json"
2015-11-13 13:39:38 +00:00
}, {
"language": "xsl",
"scopeName": "text.xml.xsl",
"path": "./syntaxes/xsl.json"
2015-11-13 13:39:38 +00:00
}]
},
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-xml grammars/xml.cson ./syntaxes/xml.json grammars/xsl.cson ./syntaxes/xsl.json"
2015-11-13 13:39:38 +00:00
}
2015-11-29 02:13:23 +00:00
}