forked from SAP/ui5-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 5.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"description": "UI5 Web Components",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"private": true,
"keywords": [
"openui5",
"sapui5",
"ui5"
],
"scripts": {
"build": "npm-run-all --sequential build:prerequisitesWithLint build:bundles",
"build:bundles": "npm-run-all --parallel bundle:main bundle:fiori",
"build:prerequisitesWithLint": "npm-run-all --parallel build:prerequisites lint:main lint:fiori",
"build:prerequisites": "npm-run-all --parallel build:base build:localization build:theming build:icons build:icons-business-suite build:icons-tnt prepare:main prepare:fiori",
"build:localization": "yarn workspace @ui5/webcomponents-localization build",
"build:base": "yarn workspace @ui5/webcomponents-base build",
"build:theming": "yarn workspace @ui5/webcomponents-theming build",
"build:icons": "yarn workspace @ui5/webcomponents-icons build",
"build:icons-business-suite": "yarn workspace @ui5/webcomponents-icons-business-suite build",
"build:icons-tnt": "yarn workspace @ui5/webcomponents-icons-tnt build",
"build:main": "yarn workspace @ui5/webcomponents build",
"build:fiori": "yarn workspace @ui5/webcomponents-fiori build",
"lint:main": "yarn workspace @ui5/webcomponents lint",
"lint:fiori": "yarn workspace @ui5/webcomponents-fiori lint",
"bundle:main": "yarn workspace @ui5/webcomponents nps build.bundle",
"bundle:fiori": "yarn workspace @ui5/webcomponents-fiori nps build.bundle",
"build:playground": "yarn build:main && yarn build:fiori && yarn copy-css && yarn workspace @ui5/webcomponents-playground build",
"build:playground:master": "yarn build:main && yarn build:fiori && yarn copy-css && yarn workspace @ui5/webcomponents-playground build:master",
"clean": "wsrun --exclude-missing clean",
"prepare:main": "yarn workspace @ui5/webcomponents nps prepare",
"prepare:fiori": "yarn workspace @ui5/webcomponents-fiori nps prepare",
"scopePrepare:main": "yarn workspace @ui5/webcomponents nps scope.prepare",
"scopePrepare:fiori": "yarn workspace @ui5/webcomponents-fiori nps scope.prepare",
"dev:base": "yarn workspace @ui5/webcomponents-base nps dev",
"dev:localization": "yarn workspace @ui5/webcomponents-localization nps watch",
"dev:main": "yarn workspace @ui5/webcomponents nps dev",
"dev:fiori": "yarn workspace @ui5/webcomponents-fiori nps dev",
"scopeDev:main": "yarn workspace @ui5/webcomponents nps scope.dev",
"scopeDev:fiori": "yarn workspace @ui5/webcomponents-fiori nps scope.dev",
"start": "npm-run-all --sequential build:prerequisites copy-css start:all",
"startWithScope": "npm-run-all --sequential build:prerequisitesWithScope copy-css scopeStart:all",
"build:prerequisitesWithScope": "npm-run-all --parallel build:base build:localization build:theming build:icons build:icons-business-suite build:icons-tnt scopePrepare:main scopePrepare:fiori",
"start:all": "npm-run-all --parallel dev:base dev:localization dev:main dev:fiori",
"scopeStart:all": "npm-run-all --parallel dev:base dev:localization scopeDev:main scopeDev:fiori",
"start:base": "yarn workspace @ui5/webcomponents-base start",
"start:main": "yarn workspace @ui5/webcomponents start",
"start:fiori": "yarn workspace @ui5/webcomponents-fiori start",
"start:playground": "yarn build:theming && yarn build:main && yarn build:fiori && yarn copy-css && yarn workspace @ui5/webcomponents-playground start",
"test:base": "yarn workspace @ui5/webcomponents-base test",
"test:main": "yarn workspace @ui5/webcomponents test",
"test:fiori": "yarn workspace @ui5/webcomponents-fiori test",
"test": "npm-run-all --sequential test:base test:main test:fiori",
"lint": "wsrun --exclude-missing lint",
"link-all": "wsrun link",
"unlink-all": "wsrun unlink",
"copy-css": "copy-and-watch \"packages/base/dist/css/**/*\" packages/main/dist/resources/css/base/ && copy-and-watch \"packages/theming/dist/css/**/*\" packages/main/dist/resources/css/theming/ && copy-and-watch \"packages/main/dist/css/**/*\" packages/main/dist/resources/css/main/ && copy-and-watch \"packages/base/dist/css/**/*\" packages/fiori/dist/resources/css/base/ && copy-and-watch \"packages/theming/dist/css/**/*\" packages/fiori/dist/resources/css/theming/ && copy-and-watch \"packages/main/dist/css/**/*\" packages/fiori/dist/resources/css/main/",
"prerelease": "node ./.github/actions/pre-release.js",
"prepare": "husky install",
"husky:commit-msg": "commitlint -e",
"husky:lint": "yarn lint",
"husky:pre-push": "npm-run-all --sequential husky:commit-msg husky:lint"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"command-line-args": "^5.1.1",
"copy-and-watch": "^0.1.5",
"globby": "^13.1.1",
"husky": "^7.0.4",
"npm-run-all": "^4.1.3",
"nps": "^5.10.0",
"wsrun": "^5.2.4"
},
"workspaces": [
"packages/theming",
"packages/base",
"packages/localization",
"packages/main",
"packages/fiori",
"packages/icons",
"packages/icons-business-suite",
"packages/icons-tnt",
"packages/tools",
"packages/playground",
"packages/create-package"
]
}