-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "mydemo",
"version": "0.0.1",
"scripts": {
"start": "ui5 serve --config=uimodule/ui5.yaml --open flpSandbox.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 .",
"build:mta": "mbt build",
"deploy:cf": "cross-var cf deploy mta_archives/mydemo_$npm_package_version.mtar",
"deploy": "run-s build:mta deploy:cf",
"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": {
"shx": "^0.3.2",
"@ui5/cli": "^2.2.5",
"ui5-middleware-livereload": "^0.3.0",
"karma": "^5.0.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-ui5": "^2.1.2",
"npm-run-all": "^4.1.5",
"eslint": "^7.1.0",
"ui5-middleware-cfdestination": "^0.2.0",
"ui5-task-zipper": "^0.3.0",
"cross-var": "^1.1.0",
"mbt": "^1.0.14"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload",
"ui5-middleware-cfdestination",
"ui5-task-zipper"
]
}
}