-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
143 lines (143 loc) · 5.29 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
{
"name": "vscode-xml-complete",
"displayName": "Xml Complete",
"publisher": "rogalmic",
"description": "XML editing helper (using XSD schemaLocation)",
"author": {
"name": "Michal Rogalinski",
"email": "[email protected]"
},
"version": "0.3.0",
"preview": true,
"license": "MIT",
"engines": {
"vscode": "^1.40.0",
"node": "^12.18.3"
},
"icon": "images/xml-complete-icon.png",
"categories": [
"Programming Languages",
"Linters"
],
"repository": {
"type": "git",
"url": "https://github.com/rogalmic/vscode-xml-complete.git"
},
"bugs": {
"url": "https://github.com/rogalmic/vscode-xml-complete/issues"
},
"badges": [
{
"url": "https://img.shields.io/github/downloads/rogalmic/vscode-xml-complete/latest/total.svg",
"href": "https://github.com/rogalmic/vscode-xml-complete/releases/latest",
"description": "Download latest beta release (master branch)"
},
{
"url": "https://img.shields.io/github/stars/rogalmic/vscode-xml-complete.svg?style=social&label=Stars",
"href": "https://github.com/rogalmic/vscode-xml-complete/stargazers",
"description": "Star the project in github"
},
{
"url": "https://img.shields.io/badge/paypal-donate-blue.svg",
"href": "https://paypal.me/rogalmic",
"description": "Donate some $ to keep project going"
}
],
"keywords": [
"xml",
"xaml",
"avalonia",
"wpf",
"xsd",
"completion",
"linter",
"lint",
"format",
"msbuild"
],
"activationEvents": [
"onLanguage:xml"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "xml",
"configuration": "./src/language-configuration.json"
}
],
"configuration": {
"title": "XmlComplete",
"type": "object",
"properties": {
"xmlComplete.formattingStyle": {
"description": "Defines if attributes should be single line or not.",
"type": "string",
"enum": [
"singleLineAttributes",
"multiLineAttributes",
"fileSizeOptimized"
],
"scope": "resource",
"default": []
},
"xmlComplete.schemaMapping": {
"description": "Maps xmlns to xsd location Uri.",
"type": "array",
"scope": "resource",
"default": [
{
"xmlns": "http://www.w3.org/2001/XMLSchema",
"xsdUri": "https://www.w3.org/2001/XMLSchema.xsd"
},
{
"xmlns": "https://github.com/avaloniaui",
"xsdUri": "https://raw.githubusercontent.com/rogalmic/vscode-xml-complete/master/test/Avalonia/AvaloniaXamlSchema.xsd"
},
{
"xmlns": "http://schemas.microsoft.com/winfx/2006/xaml/presentation",
"xsdUri": "https://raw.githubusercontent.com/rogalmic/vscode-xml-complete/master/test/Wpf/Wpf.xsd"
},
{
"xmlns": "http://www.w3.org/2000/svg",
"xsdUri": "https://raw.githubusercontent.com/dumistoklus/svg-xsd-schema/master/svg.xsd https://raw.githubusercontent.com/dumistoklus/svg-xsd-schema/master/xlink.xsd https://raw.githubusercontent.com/dumistoklus/svg-xsd-schema/master/namespace.xsd"
},
{
"xmlns": "http://schemas.microsoft.com/developer/msbuild/2003",
"xsdUri": "https://raw.githubusercontent.com/Microsoft/msbuild/master/src/MSBuild/MSBuild/Microsoft.Build.CommonTypes.xsd https://raw.githubusercontent.com/Microsoft/msbuild/master/src/MSBuild/MSBuild/Microsoft.Build.Core.xsd"
}
]
}
}
}
},
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"lint": "eslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "ts-node --project ./src/tsconfig.json node_modules/jasmine/bin/jasmine --config=jasmine.json",
"package": "vsce package",
"publish": "vsce publish",
"release": "standard-version"
},
"dependencies": {
"get-uri": "4.0.0",
"sax": "1.2.4",
"vscode-cache": "^0.3.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/node": "^14.14.27",
"@types/vscode": "^1.40.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"jasmine": "^3.6.4",
"ovsx": "^0.1.0-next.a9154dc",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"vsce": "^1.85.0"
}
}