-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"name": "xml-toolkit",
"version": "1.1.1",
"private": true,
"displayName": "XML Toolkit",
"description": "Language Support for XML",
"publisher": "SAPOSS",
"icon": "resources/xml-toolkit.png",
"keywords": [
"xml"
],
"categories": [
"Programming Languages"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP/xml-tools/tree/master/packages/xml-toolkit"
},
"engines": {
"vscode": "^1.56.0"
},
"activationEvents": [
"onLanguage:xml"
],
"main": "./lib/extension",
"scripts": {
"ci": "npm-run-all clean coverage:* bundle package",
"clean": "rimraf ./dist ./coverage ./nyc_output *.vsix NOTICE LICENSE",
"test": "node test/runTest.js",
"coverage:run": "nyc node test/runTest.js",
"coverage:check": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"vsix:prepare": "sh prepare-vsix-package.sh",
"bundle": "webpack --mode production",
"package": "node ./scripts/package-vsix"
},
"dependencies": {
"@xml-tools/language-server": "^1.1.1",
"vscode-languageclient": "6.1.3"
},
"devDependencies": {
"@types/vscode": "1.56.0",
"deep-equal-in-any-order": "1.0.28",
"lodash": "^4.17.21",
"proxyquire": "2.1.3",
"vsce": "1.84.0",
"vscode-test": "1.5.2"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"lcov"
]
}
}