forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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/xml-views-quick-fix",
"version": "2.0.1",
"description": "Logic for UI5 XML-Views quick-fixes",
"keywords": [
"QuickFix"
],
"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/logic-utils": "^1.4.1",
"@xml-tools/ast": "5.0.0",
"@xml-tools/ast-position": "2.0.2",
"lodash": "4.17.20"
},
"devDependencies": {
"@ui5-language-assistant/test-utils": "^1.4.3",
"@xml-tools/parser": "1.0.7",
"vscode-languageserver": "6.1.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": "mocha",
"coverage": "nyc mocha"
},
"publishConfig": {
"access": "public"
}
}