forked from ui5-community/ui5-ecosystem-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.39 KB
/
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
34
35
36
37
38
{
"name": "ui5-ecosystem-showcase",
"version": "0.1.0",
"description": "A repository showcasing the UI5 tooling extensibility to combine OSS tools for UI5 application development.",
"private": true,
"author": "Volker Buzek, Peter Muessig",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/petermuessig/ui5-ecosystem-showcase.git"
},
"scripts": {
"build": "yarn workspace ui5-app build",
"build:pwa": "yarn workspace ui5-app build:pwa",
"clean": "yarn workspace ui5-app clean",
"dev": "yarn workspace ui5-app dev",
"start": "yarn workspace ui5-app start",
"start:ci": "cd packages/ui5-app && npm run start:ci &",
"//*test:ci": "1. start ui5 serve and bg it - 2. run the e2e tests in parallel - 3. kill the bg'ed ui5 serve",
"pretest:ci": "npm run start:ci",
"test:ci": "HEADLESS=true npm-run-all --parallel test:uiveri5 test:wdi5",
"posttest:ci": "kill $(lsof -t -i:1081)",
"test:opa5": "cd packages/ui5-app && karma start",
"test:opa5-ci": "cd packages/ui5-app && karma start karma-ci.conf.js",
"test:uiveri5": "cd packages/ui5-app/webapp/test/e2e && uiveri5 --debug conf.js",
"test:wdi5": "cd packages/ui5-app && wdio",
"watch": "yarn workspace ui5-app watch"
},
"devDependencies": {
"lerna": "^3.22.1"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"minimist": "^1.2.5"
}
}