forked from SAP/ui5-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 3.57 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
{
"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:localization build:theme-base build:icons build:main build:fiori",
"build:localization": "cd packages/localization && yarn build",
"build:base": "cd packages/base && yarn build",
"build:theme-base": "cd packages/theme-base && yarn build",
"build:icons": "cd packages/icons && yarn build",
"build:main": "cd packages/main && yarn build",
"build:fiori": "cd packages/fiori && yarn build",
"build:playground": "yarn build:main && yarn build:fiori && cd packages/playground && yarn build",
"build:playground:master": "yarn build:main && yarn build:fiori && cd packages/playground && yarn build:master",
"clean": "npm-run-all --sequential clean:base clean:localization clean:theme-base clean:icons clean:main clean:fiori",
"clean:localization": "cd packages/localization && yarn clean",
"clean:base": "cd packages/base && yarn clean",
"clean:theme-base": "cd packages/theme-base && yarn clean",
"clean:icons": "cd packages/icons && yarn clean",
"clean:main": "cd packages/main && yarn clean",
"clean:fiori": "cd packages/fiori && yarn clean",
"prepare:main": "cd packages/main && nps prepare",
"prepare:fiori": "cd packages/fiori && nps prepare",
"scopePrepare:main": "cd packages/main && nps scope.prepare",
"scopePrepare:fiori": "cd packages/fiori && nps scope.prepare",
"dev:base": "cd packages/base && nps watch",
"dev:localization": "cd packages/localization && nps watch",
"dev:main": "cd packages/main && nps dev",
"dev:fiori": "cd packages/fiori && nps dev",
"scopeDev:main": "cd packages/main && nps scope.dev",
"scopeDev:fiori": "cd packages/fiori && nps scope.dev",
"start": "npm-run-all --sequential build:base build:localization build:theme-base build:icons prepare:main prepare:fiori start:all",
"startWithScope": "npm-run-all --sequential build:base build:localization build:theme-base build:icons scopePrepare:main scopePrepare:fiori scopeStart:all",
"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": "cd packages/base && yarn start",
"start:main": "cd packages/main && yarn start",
"start:fiori": "cd packages/fiori && yarn start",
"start:playground": "yarn build:theme-base && cross-env DEPLOY_PUBLIC_PATH=/assets/js/ui5-webcomponents/ yarn build:main && cross-env DEPLOY_PUBLIC_PATH=/assets/js/ui5-webcomponents/ yarn build:fiori && 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",
"prerelease": "node ./.github/actions/pre-release.js"
},
"devDependencies": {
"command-line-args": "^5.1.1",
"cross-env": "^5.2.0",
"glob-promise": "^3.4.0",
"npm-run-all": "^4.1.3",
"nps": "^5.9.8",
"rimraf": "^2.6.2",
"wsrun": "^3.6.4"
},
"workspaces": [
"packages/theme-base",
"packages/base",
"packages/localization",
"packages/main",
"packages/fiori",
"packages/icons",
"packages/tools",
"packages/playground"
]
}