forked from SAP/ui5-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 5.82 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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:base build:ie11 build:localization build:theming build:icons build:icons-business-suite build:icons-tnt build:main build:fiori",
"build:localization": "cd packages/localization && yarn build",
"build:base": "cd packages/base && yarn build",
"build:ie11": "cd packages/ie11 && yarn build",
"build:theming": "cd packages/theming && yarn build",
"build:icons": "cd packages/icons && yarn build",
"build:icons-business-suite": "cd packages/icons-business-suite && yarn build",
"build:icons-tnt": "cd packages/icons-tnt && yarn build",
"build:main": "cd packages/main && yarn build",
"build:fiori": "cd packages/fiori && yarn build",
"build:playground": "yarn build:main && yarn build:fiori && yarn copy-css && cd packages/playground && yarn build",
"build:playground:master": "yarn build:main && yarn build:fiori && yarn copy-css && cd packages/playground && yarn build:master",
"clean": "npm-run-all --parallel clean:base clean:ie11 clean:localization clean:theming clean:icons clean:icons-business-suite clean:icons-tnt clean:main clean:fiori",
"clean:localization": "cd packages/localization && yarn clean",
"clean:base": "cd packages/base && yarn clean",
"clean:ie11": "cd packages/ie11 && yarn clean",
"clean:theming": "cd packages/theming && yarn clean",
"clean:icons": "cd packages/icons && yarn clean",
"clean:icons-business-suite": "cd packages/icons-business-suite && yarn clean",
"clean:icons-tnt": "cd packages/icons-tnt && yarn clean",
"clean:main": "cd packages/main && yarn clean",
"clean:fiori": "cd packages/fiori && yarn clean",
"prepare:main": "cd packages/main && nps prepare",
"prepare:main:es5": "cd packages/main && nps prepare.es5",
"prepare:fiori": "cd packages/fiori && nps prepare",
"prepare:fiori:es5": "cd packages/fiori && nps prepare.es5",
"scopePrepare:main": "cd packages/main && nps scope.prepare",
"scopePrepare:fiori": "cd packages/fiori && nps scope.prepare",
"dev:base": "cd packages/base && nps dev",
"dev:ie11": "cd packages/ie11 && nps watch",
"dev:localization": "cd packages/localization && nps watch",
"dev:main": "cd packages/main && nps dev",
"dev:main:es5": "cd packages/main && nps dev.es5",
"dev:fiori": "cd packages/fiori && nps dev",
"dev:fiori:es5": "cd packages/fiori && nps dev.es5",
"scopeDev:main": "cd packages/main && nps scope.dev",
"scopeDev:fiori": "cd packages/fiori && nps scope.dev",
"start": "npm-run-all --sequential build:base build:ie11 build:localization build:theming build:icons build:icons-business-suite build:icons-tnt prepare:main prepare:fiori copy-css start:all",
"start:es5": "npm-run-all --sequential build:base build:ie11 build:localization build:theming build:icons build:icons-business-suite build:icons-tnt prepare:main:es5 prepare:fiori:es5 copy-css start:all:es5",
"startWithScope": "npm-run-all --sequential build:base build:ie11 build:localization build:theming build:icons build:icons-business-suite build:icons-tnt scopePrepare:main scopePrepare:fiori copy-css scopeStart:all",
"start:all": "npm-run-all --parallel dev:base dev:localization dev:main dev:fiori",
"start:all:es5": "npm-run-all --parallel dev:base dev:ie11 dev:localization dev:main:es5 dev:fiori:es5",
"scopeStart:all": "npm-run-all --parallel dev:base dev:ie11 dev:localization scopeDev:main scopeDev:fiori",
"start:base": "cd packages/base && yarn start",
"start:main": "cd packages/main && yarn start",
"start:fiori": "cd packages/fiori && yarn start",
"start:playground": "yarn build:theming && cross-env DEPLOY_PUBLIC_PATH=/assets/js/ui5-webcomponents/ yarn build:main && cross-env DEPLOY_PUBLIC_PATH=/assets/js/ui5-webcomponents/ yarn build:fiori && yarn copy-css && cd packages/playground && yarn start",
"test:base": "cd packages/base && yarn test",
"test:main": "cd packages/main && yarn test",
"test:fiori": "cd packages/fiori && yarn 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",
"hash": "wsrun --exclude-missing hash",
"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",
"cross-env": "^7.0.3",
"glob": "^7.2.0",
"glob-promise": "^4.1.0",
"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/ie11",
"packages/tools",
"packages/playground",
"packages/create-package"
]
}