forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 934 Bytes
/
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
{
"name": "@ui5-language-assistant/settings",
"version": "4.0.9",
"private": true,
"description": "Settings for UI5 Language Assistant",
"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": {
"deep-freeze-strict": "1.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": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=false",
"coverage": "jest --ci --forceExit --detectOpenHandles --maxWorkers=1 --coverage=true"
}
}