forked from SAP/openui5-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 960 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
{
"name": "openui5-sample-app",
"version": "0.2.0",
"description": "Sample of an OpenUI5 app",
"private": true,
"scripts": {
"start": "ui5 serve",
"lint": "eslint webapp",
"karma": "karma start",
"karma-ci": "karma start karma-ci.conf.js",
"watch": "start-server-and-test start http://localhost:8080 karma",
"test": "npm run lint && rimraf coverage && start-server-and-test start http://localhost:8080 karma-ci",
"build": "rimraf dist && ui5 build --a"
},
"dependencies": {
"@openui5/sap.m": "^1.60.0",
"@openui5/sap.ui.core": "^1.60.0",
"@openui5/themelib_sap_belize": "^1.60.0"
},
"devDependencies": {
"@ui5/cli": "^1.2.0",
"eslint": "^4.19.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-openui5": "^0.2.3",
"karma-qunit": "^1.2.1",
"qunitjs": "^2.4.1",
"rimraf": "^2.6.2",
"start-server-and-test": "^1.4.1"
}
}