-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.4 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
{
"name": "MetadatosFiori",
"version": "0.0.1",
"scripts": {
"start": "ui5 serve --config=uimodule/ui5.yaml --open index.html",
"build:ui": "run-s build:uimodule",
"test": "run-s lint karma",
"karma-ci": "karma start karma-ci.conf.js",
"clearCoverage": "shx rm -rf coverage",
"karma": "run-s clearCoverage karma-ci",
"lint": "eslint ./**/webapp/**/*.js && prettier --plugin-search-dir=. --check ./**/webapp/**/*.{js,xml}",
"lint-fix": "eslint ./**/webapp/**/*.js --fix && prettier --plugin-search-dir=. --write ./**/webapp/**/*.{js,xml} --no-error-on-unmatched-pattern",
"serve:uimodule": "ui5 serve --config=uimodule/ui5.yaml",
"build:uimodule": "ui5 build --config=uimodule/ui5.yaml --clean-dest --dest uimodule/dist --include-task=generateManifestBundle"
},
"devDependencies": {
"@prettier/plugin-xml": "^1.1.0",
"@sap/eslint-plugin-ui5-jsdocs": "^2.0.5",
"@sapui5/ts-types": "^1.96.0",
"@types/node": "^18.6.4",
"@ui5/cli": "^2.14.1",
"eslint": "^7.32.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-ui5": "^2.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"tslib": "^2.4.0",
"ui5-middleware-livereload": "^0.5.8"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
},
"dependencies": {
"file-saver": "^2.0.5"
}
}