hookshot/package.json

53 lines
1.5 KiB
JSON

{
"name": "matrix-github",
"version": "0.0.1",
"description": "A bridge that displays GitHub issues/PRs as rooms.",
"main": "lib/app.js",
"repository": "https://github.com/Half-Shot/matrix-github",
"author": "Half-Shot",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --project tsconfig.json",
"start:app": "node lib/App/BridgeApp.js",
"start:webhooks": "node lib/App/GithubWebhookApp.js",
"start:matrixsender": "node lib/App/MatrixSenderApp.js",
"test": "mocha -r ts-node/register tests/**/*.ts",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"@octokit/auth-app": "^2.4.2",
"@octokit/auth-token": "^2.4.0",
"@octokit/rest": "^16.43.1",
"axios": "^0.19.2",
"express": "^4.17.1",
"ioredis": "^4.14.0",
"markdown-it": "^9.0.1",
"matrix-bot-sdk": "^0.5.0",
"micromatch": "^4.0.2",
"mime": "^2.4.4",
"mocha": "^6.2.0",
"node-emoji": "^1.10.0",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"yaml": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/ioredis": "^4.0.13",
"@types/markdown-it": "^0.0.8",
"@types/micromatch": "^3.1.0",
"@types/mime": "^2.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.9",
"@types/node-emoji": "^1.8.1",
"@types/uuid": "^3.4.5",
"@types/yaml": "^1.0.2",
"chai": "^4.2.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.7.5"
}
}