This repository was archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.76 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.76 KB
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
{
"name": "apibuilder4elastic",
"description": "This API-Builder project provides an ELK-Based Traffic-Monitor API.",
"main": "app.js",
"version": "v4.5.0",
"author": "Chris Wiechmann",
"email": "cwiechmann@axway.com",
"url": "https://axway.com",
"license": "Apache-2.0",
"keywords": [
"api-builder",
"axway",
"api-gateway",
"monitoring",
"elasticsearch"
],
"engines": {
"node": ">=8.9"
},
"repository": {
"type": "git",
"url": "https://github.com/cwiechmann/apigateway-openlogging-elk.git"
},
"bugs": {
"url": "https://github.com/cwiechmann/apigateway-openlogging-elk/issues"
},
"homepage": "https://github.com/cwiechmann/apigateway-openlogging-elk",
"dependencies": {
"@axway-api-builder-ext/api-builder-plugin-fn-elasticsearch": "^2.2.1",
"@axway-api-builder-ext/api-builder-plugin-fn-file": "^0.0.8",
"@axway-api-builder-ext/api-builder-plugin-fn-power": "^1.0.0",
"@axway-api-builder-ext/api-builder-plugin-utils": "^1.0.1",
"@axway/api-builder-plugin-fn-base64": "^2.1.5",
"@axway/api-builder-plugin-fn-javascript": "^3.0.2",
"@axway/api-builder-plugin-fn-json": "^2.0.16",
"@axway/api-builder-plugin-fn-logger": "^1.0.1",
"@axway/api-builder-plugin-fn-mustache": "^1.0.9",
"@axway/api-builder-plugin-fn-restclient": "^2.0.23",
"@axway/api-builder-plugin-fn-swagger": "^2.9.5",
"@axway/api-builder-plugin-ft-timer": "^1.0.2",
"@axway/api-builder-plugin-invoke-flow": "^1.1.1",
"@axway/api-builder-runtime": "^4.68.0",
"api-builder-plugin-api-management-kpis": "file:custom_flow_nodes/api-builder-plugin-api-management-kpis",
"api-builder-plugin-authorization": "file:custom_flow_nodes/api-builder-plugin-authorization",
"api-builder-plugin-axway-api-management": "file:custom_flow_nodes/api-builder-plugin-axway-api-management",
"api-builder-plugin-elk-solution-utils": "file:custom_flow_nodes/api-builder-plugin-elk-solution-utils",
"api-builder-plugin-traffic-monitor-api-utils": "file:custom_flow_nodes/api-builder-plugin-traffic-monitor-api-utils",
"elastic-apm-node": "^3.25.0"
},
"devDependencies": {
"@axway/api-builder-admin": "^1.44.12",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"mocha": "^9.1.2",
"nock": "^13.1.1",
"simple-mock": "^0.8.0",
"template-file": "^5.1.0"
},
"scripts": {
"start": "node .",
"test": "mocha --exit --colors ./test --recursive -R spec",
"test:search": "mocha --exit --colors ./test/test_search_endpoint.js -R spec",
"test:circuitpath": "mocha --exit --colors ./test/test_circuitpath.js -R spec",
"test:trace": "mocha --inspect-brk --exit --colors ./test/test_trace_endpoint.js -R spec",
"test:getinfo": "mocha --inspect-brk --exit --colors ./test/test_getinfo_endpoint.js -R spec",
"test:debug": "mocha --inspect-brk --exit --colors ./test --recursive -R spec --timeout 10000"
}
}