-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathpackage.json
64 lines (64 loc) · 3.71 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
{
"private": true,
"name": "@kie-tools/sonataflow-operator",
"version": "0.0.0",
"description": "",
"license": "Apache-2.0",
"homepage": "https://github.com/apache/incubator-kie-tools",
"repository": {
"type": "git",
"url": "https://github.com/apache/incubator-kie-tools.git"
},
"bugs": {
"url": "https://github.com/apache/incubator-kie-tools/issues"
},
"scripts": {
"build:dev": "run-script-if --bool true --then run-script-os --finally \"pnpm format\"",
"build:dev:darwin:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && make generate-all && make build && pnpm image:build",
"build:dev:win32": "echo 'Build not supported on Windows'",
"build:prod": "run-script-if --bool true --then run-script-os --finally \"pnpm format\"",
"build:prod:darwin:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && make generate-all && make build && pnpm image:build && pnpm test && pnpm test-e2e",
"build:prod:win32": "echo 'Build not supported on Windows'",
"bump-version": "run-script-os",
"bump-version:darwin:linux": "./hack/bump-version.sh",
"bump-version:win32": "echo 'Bumping version not supported on Windows'",
"controllers:update:cfg": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && make update-config",
"format": "prettier --write . --ignore-path=../../.prettierignore --ignore-path=../../.gitignore",
"image:build": "run-script-os",
"image:build:darwin:win32": "echo 'Image build not supported on Windows and macOS'",
"image:build:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --bool \"$(build-env containerImages.build)\" --then \"make container-build\"",
"image:bundle:build": "run-script-os",
"image:bundle:build:darwin:win32": "echo 'Build Operator bundle image not supported on Windows and macOS'",
"image:bundle:build:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --bool \"$(build-env containerImages.build)\" --then \"make bundle bundle-build\"",
"install": "run-script-os",
"install:darwin:linux": "rimraf bin && go work sync && go mod tidy && pnpm controllers:update:cfg && pnpm bump-version && pnpm format",
"install:win32": "echo 'Install not supported on Windows'",
"test": "run-script-os",
"test:darwin:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(build-env tests.run)\" --then \"make test\"",
"test:win32": ".\\node_modules\\@kie-tools\\python-venv\\venv\\Scripts\\Activate.bat && run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(build-env tests.run)\" --then \"make test\"",
"test-e2e": "run-script-os",
"test-e2e:darwin:win32": "echo 'E2E tests not supported on Windows and macOS'",
"test-e2e:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(false)\" --then \"make full-test-e2e\""
},
"dependencies": {},
"devDependencies": {
"@kie-tools/python-venv": "workspace:*",
"@kie-tools/root-env": "workspace:*",
"@kie-tools/sonataflow-builder-image": "workspace:*",
"@kie-tools/sonataflow-devmode-image": "workspace:*",
"@kie/kogito-data-index-ephemeral-image": "workspace:*",
"@kie/kogito-data-index-postgresql-image": "workspace:*",
"@kie/kogito-jobs-service-ephemeral-image": "workspace:*",
"@kie/kogito-jobs-service-postgresql-image": "workspace:*",
"replace-in-file": "^7.1.0",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6"
},
"kieTools": {
"requiredPreinstalledCliCommands": [
"go",
"make",
"python3"
]
}
}