forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.41 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
{
"name": "@ui5-language-assistant/language-server",
"version": "4.0.44",
"private": true,
"description": "UI5 Language Server",
"keywords": [
"LSP",
"language-server",
"UI5",
"OpenUI5",
"SAPUI5"
],
"files": [
".reuse",
"LICENSES",
"lib/src",
"api.d.ts",
"src"
],
"main": "lib/src/api.js",
"repository": "https://github.com/sap/ui5-language-assistant/",
"license": "Apache-2.0",
"typings": "./api.d.ts",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@ui5-language-assistant/binding": "1.0.27",
"@sap/swa-for-sapbas-vsx": "1.1.9",
"@ui5-language-assistant/logger": "0.0.1",
"@ui5-language-assistant/context": "4.0.24",
"@ui5-language-assistant/logic-utils": "4.0.18",
"@ui5-language-assistant/fe": "4.0.25",
"@ui5-language-assistant/semantic-model": "4.0.17",
"@ui5-language-assistant/settings": "4.0.9",
"@ui5-language-assistant/user-facing-text": "4.0.8",
"@ui5-language-assistant/xml-views-completion": "4.0.24",
"@ui5-language-assistant/xml-views-quick-fix": "4.0.18",
"@ui5-language-assistant/xml-views-tooltip": "4.0.24",
"@ui5-language-assistant/xml-views-validation": "4.0.19",
"@xml-tools/ast": "5.0.0",
"@xml-tools/ast-position": "2.0.2",
"@xml-tools/parser": "1.0.7",
"assert-never": "1.2.1",
"fs-extra": "10.1.0",
"lodash": "4.17.21",
"vscode-languageserver": "8.0.2",
"vscode-languageserver-textdocument": "1.0.1",
"vscode-uri": "2.1.2"
},
"devDependencies": {
"@types/js-yaml": "4.0.5",
"@types/node-fetch": "2.5.10",
"@types/semver": "7.3.12",
"@types/tmp": "0.2.0",
"@ui5-language-assistant/semantic-model-types": "4.0.10",
"@ui5-language-assistant/test-utils": "4.0.13",
"string-replace-loader": "3.1.0",
"vscode-languageserver-types": "3.17.2"
},
"scripts": {
"ci": "npm-run-all clean compile lint coverage bundle",
"clean": "rimraf ./dist ./lib ./coverage ./nyc_output",
"compile": "yarn run clean && tsc -p .",
"compile:watch": "tsc -p . --watch",
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
"test": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false",
"coverage": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true",
"update-snapshots": "node ./scripts/update-diagnostics-snapshots",
"bundle": "node esbuild.js"
}
}