-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.71 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
{
"name": "@ui5-language-assistant/semantic-model",
"version": "4.0.19",
"private": true,
"description": "Semantic model provider for UI5",
"keywords": [],
"files": [
".reuse",
"LICENSES",
"lib/src",
"api.d.ts",
"src",
"resources"
],
"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/logger": "0.0.2",
"ajv": "6.12.3",
"deep-freeze-strict": "1.1.1",
"fs-extra": "10.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/deep-freeze-strict": "1.1.0",
"@ui5-language-assistant/test-utils": "4.0.16",
"json-schema-to-typescript": "10.0.3"
},
"scripts": {
"ci": "npm-run-all clean generate-json-api 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",
"generate-json-api": "json2ts -i ./resources/sap-ui-library-api.json -o ./src/api-json.d.ts --no-unknownAny --bannerComment \"/* This file is automatically generated. DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file (sap-ui-library-api.json) and run generate-json-api from the package.json to regenerate this file. */\" && prettier --write ./src/api-json.d.ts"
}
}