-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1001 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
31
32
33
{
"name": "artviewer",
"version": "0.0.1",
"scripts": {
"start": "ui5 serve --config=uimodule/ui5.yaml --open index.html",
"build:ui": "run-s build:uimodule",
"test": "run-s lint karma",
"karma-ci": "karma start karma-ci.conf.js",
"clearCoverage": "shx rm -rf coverage",
"karma": "run-s clearCoverage karma-ci",
"lint": "eslint .",
"serve:uimodule": "ui5 serve --config=uimodule/ui5.yaml",
"build:uimodule": "ui5 build --config=uimodule/ui5.yaml --clean-dest --a --dest uimodule/dist --include-task=generateManifestBundle"
},
"devDependencies": {
"@types/openui5": "^1.40.5",
"@ui5/cli": "^2.4.1",
"eslint": "^7.7.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-ui5": "^2.2.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"ui5-middleware-livereload": "^0.4.1",
"viewerjs": "^1.7.1"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
}
}