-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.14 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
{
"name": "oas-telemetry-plugin-outlier-messaging",
"version": "1.0.0",
"description": "This is a plugin for [oas-telemetry](https://github.com/oas-tools/oas-telemetry) designed to alert for anomalies (abnormal response times) through messaging (e.g. telegram channel).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-minified": "esbuild plugin-src.js --bundle --minify --platform=node > dist/ot_outlier_msg_plugin-min.js",
"build": "esbuild plugin-src.js --bundle --platform=node > dist/ot_outlier_msg_plugin.js",
"start": "node index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oas-tools/oas-telemetry-plugin-outlier-messaging.git"
},
"keywords": [],
"author": "Pablo Fernandez",
"contributors": [
{
"name": "Manuel Otero"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/oas-tools/oas-telemetry-plugin-outlier-messaging/issues"
},
"homepage": "https://github.com/oas-tools/oas-telemetry-plugin-outlier-messaging#readme",
"dependencies": {
"express": "^4.21.0",
"node-telegram-bot-api": "^0.66.0"
}
}