-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 1.55 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
{
"name": "ui5-typescript-helloworld",
"version": "1.0.0",
"description": "Showcase of a TypeScript setup for developing UI5 applications",
"author": "SAP SE",
"license": "Apache-2.0",
"scripts": {
"build": "ui5 build --clean-dest",
"build:opt": "ui5 build self-contained --clean-dest --all",
"start": "ui5 serve --port 8080 -o index.html",
"start-coverage": "ui5 serve --port 8080 --config ui5-coverage.yaml",
"start:dist": "ui5 serve --port 8080 -o index.html --config ui5-dist.yaml",
"ts-typecheck": "tsc --noEmit",
"lint": "eslint webapp",
"test-runner": "ui5-test-runner --url http://localhost:8080/test/testsuite.qunit.html",
"test-runner-coverage": "ui5-test-runner --url http://localhost:8080/test/testsuite.qunit.html --coverage -ccb 60 -ccf 100 -ccl 80 -ccs 80",
"test-ui5": "ui5-test-runner --start start-coverage --url http://localhost:8080/test/testsuite.qunit.html --coverage -ccb 60 -ccf 100 -ccl 80 -ccs 80",
"test": "npm run lint && npm run test-ui5",
"ui5lint": "ui5lint"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP-samples/ui5-typescript-helloworld.git"
},
"devDependencies": {
"@types/openui5": "1.131.0",
"@ui5/cli": "^4",
"@ui5/linter": "^1.5.0",
"babel-plugin-istanbul": "^7.0.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.18.1",
"ui5-middleware-livereload": "^3",
"ui5-middleware-simpleproxy": "^3",
"ui5-test-runner": "^5.4.3",
"ui5-tooling-transpile": "^3"
}
}