-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.8 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
41
42
43
{
"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 --start-timeout 60000 --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",
"lint:lockfile": "lockfile-lint --type npm --path package-lock.json --allowed-hosts npm --validate-https",
"setup": "npx puppeteer browsers install chrome"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP-samples/ui5-typescript-helloworld.git"
},
"devDependencies": {
"@openui5/types": "1.148.0",
"@types/qunit": "2.19.14",
"@ui5/cli": "4.0.55",
"@ui5/linter": "1.21.2",
"babel-plugin-istanbul": "8.0.0",
"eslint": "10.4.1",
"globals": "17.6.0",
"lockfile-lint": "5.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"ui5-middleware-livereload": "3.3.1",
"ui5-middleware-simpleproxy": "3.8.0",
"ui5-test-runner": "5.13.1",
"ui5-tooling-transpile": "3.11.2"
}
}