nixpkgs/pkgs/servers/monitoring/matrix-alertmanager/package.json

41 lines
883 B
JSON
Raw Normal View History

2021-09-04 14:18:09 +00:00
{
"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"
}