forked from SAP-samples/sap-community-code-challenge-ui5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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": "ui5-challenge",
"version": "1.1.0",
"description": "SAP Community Code Challenge: This repository contains an empty OpenUI5 application and end-to-end test written with wdi5. Take part in the challenge and develop an app that passes the tests.",
"scripts": {
"start": "ui5 serve --port 8080",
"test": "wdio run wdio.conf.js",
"ci-test": "run-p -r start wait-then-test",
"wait-then-test": "wait-on tcp:8080 && npm run test -- --headless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP-samples/sap-community-code-challenge-ui5.git"
},
"keywords": [
"sap",
"sap-community",
"code-challenge",
"OpenUI5",
"wdi5"
],
"author": "https://github.com/nicogeburek",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SAP-samples/sap-community-code-challenge-ui5/issues"
},
"homepage": "https://github.com/SAP-samples/sap-community-code-challenge-ui5#readme",
"devDependencies": {
"@ui5/cli": "^2.14.1",
"@wdio/cli": "^7.19.7",
"@wdio/local-runner": "^7.19.7",
"@wdio/mocha-framework": "^7.19.7",
"@wdio/spec-reporter": "^7.19.7",
"chromedriver": "^101.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"wait-on": "^6.0.1",
"wdio-chromedriver-service": "^7.3.2",
"wdio-ui5-service": "^0.9.0"
}
}