forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "@ui5-language-assistant/xml-views-validation",
"version": "3.3.1",
"description": "Validations Logic for UI5 XML-Views",
"keywords": [
"xml",
"ui5",
"openui5",
"validations"
],
"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/logic-utils": "3.3.1",
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@ui5-language-assistant/user-facing-text": "3.3.1",
"@xml-tools/ast": "5.0.0",
"@xml-tools/common": "0.1.2",
"deep-freeze-strict": "1.1.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@ui5-language-assistant/semantic-model": "3.3.1",
"@ui5-language-assistant/test-utils": "3.3.1",
"@xml-tools/parser": "1.0.7"
},
"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": "mocha",
"coverage": "nyc mocha"
},
"publishConfig": {
"access": "public"
}
}