-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
{
"name": "@ui5-language-assistant/logic-utils",
"version": "4.0.21",
"private": true,
"description": "TBD",
"keywords": [],
"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/constant": "0.0.1",
"@ui5-language-assistant/semantic-model-types": "4.0.11",
"@ui5-language-assistant/settings": "4.0.10",
"@ui5-language-assistant/logger": "0.0.2",
"@xml-tools/ast": "5.0.0",
"lodash": "4.17.21",
"node-fetch": "2.6.9",
"https-proxy-agent": "5.0.1",
"proxy-from-env": "1.1.0",
"chevrotain": "7.0.1"
},
"devDependencies": {
"@ui5-language-assistant/semantic-model": "4.0.19",
"@ui5-language-assistant/test-utils": "4.0.16",
"@xml-tools/parser": "1.0.7",
"vscode-languageserver-types": "3.17.2"
},
"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"
}
}