-
Notifications
You must be signed in to change notification settings - Fork 230
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 971 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 971 Bytes
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
{
"name": "@ui5/sample-app",
"version": "0.5.0",
"description": "Sample of an OpenUI5 app",
"private": true,
"engines": {
"node": "^20.11.0 || >=22.0.0",
"npm": ">= 8"
},
"scripts": {
"start": "ui5 serve --port 8080",
"lint": "eslint webapp && ui5lint",
"test-runner": "npx puppeteer browsers install chrome && ui5-test-runner --url http://localhost:8080/test/testsuite.qunit.html --start start --start-timeout 30000 --coverage -ccb 100 -ccf 100 -ccl 100 -ccs 100",
"test": "npm run lint && npm run test-runner",
"build": "ui5 build -a --clean-dest",
"build-self-contained": "ui5 build self-contained -a --clean-dest",
"serve-dist": "ws --compress -d dist"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ui5/cli": "^4.0.47",
"@ui5/linter": "^1.20.13",
"@ui5/middleware-code-coverage": "^2.0.3",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"local-web-server": "^5.4.0",
"rimraf": "^6.1.3",
"ui5-test-runner": "^5.13.0"
}
}