forked from ilkinabdullayev/api-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 5.54 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
{
"name": "api-layer",
"version": "0.3.0",
"description": "Zowe API Mediation Layer",
"directories": {
"doc": "docs"
},
"scripts": {
"api-layer": "concurrently --names \"GS,DS,AC,DC\" -c cyan,yellow,white,blue npm:gateway-service npm:discovery-service npm:api-catalog-service npm:discoverable-client",
"api-layer-core": "concurrently --names \"GW,DS,AC\" -c cyan,yellow,white npm:gateway-service npm:discovery-service npm:api-catalog-service",
"api-layer-without-gateway": "concurrently --names \"DS,AC,DC\" -c yellow,white,blue npm:discovery-service npm:api-catalog-service npm:discoverable-client",
"api-layer-without-discovery": "concurrently --names \"GW,AC,DC\" -c cyan,white,blue npm:gateway-service npm:api-catalog-service npm:discoverable-client",
"api-layer-without-catalog": "concurrently --names \"GW,DS,DC\" -c cyan,yellow,blue npm:gateway-service npm:discovery-service npm:discoverable-client",
"gateway-service": "java -jar gateway-service/build/libs/gateway-service.jar --spring.config.additional-location=file:./config/local/gateway-service.yml --apiml.security.ssl.verifySslCertificatesOfServices=true",
"gateway-service-debug": "java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=5010,suspend=y -jar gateway-service/build/libs/gateway-service.jar --spring.config.additional-location=file:./config/local/gateway-service.yml",
"discovery-service": "java -jar discovery-service/build/libs/discovery-service.jar --spring.profiles.active=https --spring.config.additional-location=file:./config/local/discovery-service.yml --apiml.security.ssl.verifySslCertificatesOfServices=true",
"discovery-service-http": "java -jar discovery-service/build/libs/discovery-service.jar --spring.profiles.active=http --spring.config.additional-location=file:./config/local/discovery-service.yml",
"api-catalog-service": "java -jar api-catalog-services/build/libs/api-catalog-services.jar --spring.config.additional-location=file:./config/local/api-catalog-service.yml --apiml.security.ssl.verifySslCertificatesOfServices=true",
"api-catalog-service-debug": "java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=5014,suspend=n -jar api-catalog-services/build/libs/api-catalog-services.jar --spring.config.additional-location=file:./config/local/api-catalog-service.yml",
"discoverable-client": "java -jar discoverable-client/build/libs/discoverable-client.jar --spring.config.additional-location=file:./config/local/discoverable-client.yml",
"discoverable-client-debug": "java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=5012,suspend=n -jar discoverable-client/build/libs/discoverable-client.jar --spring.config.additional-location=file:./config/local/discoverable-client.yml",
"integration-enabler-spring-v1-sample-app": "java -jar integration-enabler-spring-v1-sample-app/build/libs/enabler-springboot-1.5.9.RELEASE-sample.jar --spring.config.location=classpath:/,file:./config/local/integration-enabler-spring-v1-sample-app.yml",
"api-layer-multi": "concurrently --names \"GS1,DS1,DS2,AC1,DC1\" -c cyan,yellow,yellow,white,blue npm:gateway-service-1 npm:discovery-service-1 npm:discovery-service-2 npm:api-catalog-service-1 npm:discoverable-client-1",
"gateway-service-1": "java -jar gateway-service/build/libs/gateway-service.jar --spring.config.additional-location=file:./config/local-multi/gateway-service.yml",
"discovery-service-1": "java -jar discovery-service/build/libs/discovery-service.jar --spring.profiles.active=https --spring.config.additional-location=file:./config/local-multi/discovery-service-1.yml",
"discovery-service-1-debug": "java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=5010,suspend=n -jar discovery-service/build/libs/discovery-service.jar --spring.profiles.active=https --spring.config.additional-location=file:./config/local-multi/discovery-service-1.yml",
"discovery-service-2": "java -jar discovery-service/build/libs/discovery-service.jar --spring.profiles.active=https --spring.config.additional-location=file:./config/local-multi/discovery-service-2.yml",
"api-catalog-service-1": "java -jar api-catalog-services/build/libs/api-catalog-services.jar --spring.config.additional-location=file:./config/local-multi/api-catalog-service.yml",
"discoverable-client-1": "java -jar discoverable-client/build/libs/discoverable-client.jar --spring.config.additional-location=file:./config/local-multi/discoverable-client.yml",
"test": "./gradlew runAllIntegrationTests",
"test-scripts": "mocha scripts",
"test-scripts-ci": "TEST_DIR=./scripts/test-results jenkins-mocha --no-coverage scripts",
"//": "echo \"for windows: to install sudo, run chocolatey.exe install sudo\"",
"register-certificates-win": "echo \"for windows: to install sudo, run chocolatey.exe install sudo\" & sudo . cmd /C \"certutil -enterprise -delstore Root \"Zowe Development Instances Certificate Authority\" & certutil -enterprise -f -v -AddStore Root \"keystore/local_ca/localca.cer\" || pause\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zowe/api-layer.git"
},
"author": "",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/zowe/api-layer/issues"
},
"homepage": "https://github.com/zowe/api-layer#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "4.1.0",
"diff": "4.0.1",
"jenkins-mocha": "8.0.0",
"mocha": "6.2.2",
"nixt": "^0.5.1"
}
}