mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
41 lines
883 B
JSON
41 lines
883 B
JSON
|
{
|
||
|
"name": "matrix-alertmanager",
|
||
|
"version": "0.4.0",
|
||
|
"description": "Prometheus Alertmanager bot for Matrix",
|
||
|
"main": "src/app.js",
|
||
|
"scripts": {
|
||
|
"dev": "node_modules/.bin/nodemon src/app.js localhost 3000",
|
||
|
"test": "node_modules/.bin/mocha tests/",
|
||
|
"start": "node src/app.js"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://git.feneas.org/jaywink/matrix-alertmanager"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"matrix",
|
||
|
"alertmanager",
|
||
|
"prometheus",
|
||
|
"bot"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">= 14"
|
||
|
},
|
||
|
"author": "Jason Robinson",
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"chai": "^4.2.0",
|
||
|
"eslint": "^7.14.0",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nodemon": "^2.0.6",
|
||
|
"sinon": "^9.2.1"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"dotenv": "^8.2.0",
|
||
|
"express": "^4.17.1",
|
||
|
"matrix-js-sdk": "^9.2.0",
|
||
|
"striptags": "^3.1.1"
|
||
|
},
|
||
|
"bin": "src/app.js"
|
||
|
}
|