-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
47 lines (47 loc) · 2.17 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
46
47
{
"name": "ui5-ts-app",
"version": "0.8.15-notimportant",
"type": "module",
"private": true,
"description": "UI5 Application: tsapp",
"author": "[email protected]",
"license": "Apache-2.0",
"scripts": {
"start": "ui5 serve --port 8080 --accept-remote-connections",
"//test": "run-s test:*",
"test": "wdio run wdio-ui5.conf.ts",
"test:browserstack": "wdio run test/e2e/cloud-services/browserstack.conf.ts",
"test:authentication": "run-s authentication:*",
"//test-h:authentication": "run-s \"authentication:* -- --headless\"",
"test:authentication:bstack": "BROWSERSTACK=true run-s authentication:*",
"test:lateInject": "wdio run wdio-ui5-late.conf.ts",
"test:wz": "wdio run test/e2e/workzone/wdio-ui5-workzone.conf.ts",
"authentication:btp": "wdio run test/e2e/authentication/wdio-btp-authentication.conf.ts",
"authentication:cert": "wdio run test/e2e/authentication/wdio-cert-authentication.conf.ts",
"authentication:basic-auth": "wdio run test/e2e/authentication/wdio-basic-auth-authentication.conf.ts",
"authentication:custom": "wdio run test/e2e/authentication/wdio-custom-authentication.conf.ts",
"authentication:multiRemote": "wdio run test/e2e/authentication/wdio-btp-authentication-multiremote.conf.ts",
"test:protocol": "run-p \"protocol:* -- --headless\"",
"protocol:devtools": "PROT=devtools wdio run test/e2e/protocol/wdio-ui5-devtools.conf.ts",
"protocol:webdriver": "PROT=webdriver wdio run test/e2e/protocol/wdio-ui5-webdriver.conf.ts",
"build:ui5": "ui5 build --clean-dest",
"build:mtar": "mv dist approuter/webapp && mbt build",
"clean": "rimraf dist approuter/webapp",
"build:cf": "npm-run-all --sequential clean build:ui5 build:mtar"
},
"devDependencies": {
"@openui5/types": "latest",
"@sap/approuter": "latest",
"@types/jquery": "3.5.29",
"@ui5/cli": "^3",
"@wdio/browserstack-service": "^8.36.0",
"@wdio/sauce-service": "^8",
"mbt": "latest",
"ts-deepmerge": "latest",
"ui5-middleware-livereload": "latest",
"ui5-middleware-simpleproxy": "latest",
"ui5-tooling-transpile": "latest",
"wdio-ui5-service": "*",
"dotenv": "16.4.5"
}
}