Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 41 lines 919 B view raw
1{ 2 "name": "matrix-alertmanager", 3 "version": "0.5.0", 4 "description": "Prometheus Alertmanager bot for Matrix", 5 "main": "src/app.js", 6 "scripts": { 7 "dev": "node_modules/.bin/nodemon src/app.js localhost 3000", 8 "test": "node_modules/.bin/mocha tests/", 9 "start": "node src/app.js" 10 }, 11 "repository": { 12 "type": "git", 13 "url": "https://github.com/jaywink/matrix-alertmanager" 14 }, 15 "keywords": [ 16 "matrix", 17 "alertmanager", 18 "prometheus", 19 "bot" 20 ], 21 "engines": { 22 "node": ">= 14" 23 }, 24 "author": "Jason Robinson", 25 "license": "MIT", 26 "devDependencies": { 27 "chai": "^4.3.4", 28 "eslint": "^7.32.0", 29 "mocha": "^9.1.1", 30 "nodemon": "^2.0.12", 31 "npm-check-updates": "^11.8.5", 32 "sinon": "^11.1.2" 33 }, 34 "dependencies": { 35 "dotenv": "^10.0.0", 36 "express": "^4.17.1", 37 "matrix-js-sdk": "^12.5.0", 38 "striptags": "^3.2.0" 39 }, 40 "bin": "src/app.js" 41}