-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathpackage.json
30 lines (30 loc) · 909 Bytes
/
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
{
"name": "openui5-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": "ui5-test-runner --url http://localhost:8080/test/testsuite.qunit.html --start start --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": "^9.14.0",
"@ui5/cli": "^4.0.13",
"@ui5/linter": "^1.8.0",
"@ui5/middleware-code-coverage": "^2.0.1",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"local-web-server": "^5.4.0",
"rimraf": "^6.0.1",
"ui5-test-runner": "^5.4.3"
}
}