forked from beeper/matrix-alertmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "matrix-alertmanager",
"version": "0.12.1",
"description": "Prometheus Alertmanager bot for Matrix",
"main": "src/app.js",
"scripts": {
"build": "yarn build",
"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://github.com/small-hack/matrix-alertmanager"
},
"keywords": [
"matrix",
"alertmanager",
"prometheus",
"bot"
],
"engines": {
"node": ">= 22"
},
"author": "Jason Robinson",
"contributors": [
{
"name": "Jesse Hitch",
"email": "[email protected]",
"url": "https://jessebot.work/"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^5.0.0",
"eslint": "^9.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.0.0",
"npm-check-updates": "^16.14.20",
"sinon": "^18.0.0"
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.1",
"matrix-js-sdk": "^32.0.0",
"striptags": "^3.2.0"
}
}