forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@ui5-language-assistant/xml-views-completion",
"version": "4.0.24",
"private": true,
"description": "Auto-Complete Logic for UI5 XML-Views",
"keywords": [
"xml",
"ui5",
"openui5",
"content-assist"
],
"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",
"dependencies": {
"@ui5-language-assistant/context": "4.0.24",
"@ui5-language-assistant/logic-utils": "4.0.18",
"@xml-tools/ast": "5.0.0",
"@xml-tools/common": "0.1.2",
"@xml-tools/content-assist": "3.1.7",
"assert-never": "1.2.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@ui5-language-assistant/semantic-model": "4.0.17",
"@xml-tools/parser": "1.0.7",
"chevrotain": "7.0.1"
},
"scripts": {
"ci": "npm-run-all clean compile lint coverage",
"clean": "rimraf ./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"
}
}