2019-08-02 19:12:03 +01:00
|
|
|
{
|
|
|
|
"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",
|
2019-08-07 18:28:58 +01:00
|
|
|
"start:app": "node lib/App/BridgeApp.js",
|
|
|
|
"start:webhooks": "node lib/App/GithubWebhookApp.js",
|
2019-08-08 14:38:31 +01:00
|
|
|
"start:matrixsender": "node lib/App/MatrixSenderApp.js",
|
2019-08-06 18:40:15 +01:00
|
|
|
"test": "mocha -r ts-node/register tests/**/*.ts",
|
|
|
|
"lint": "tslint -p tsconfig.json"
|
2019-08-02 19:12:03 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-02-18 17:16:21 +00:00
|
|
|
"@octokit/auth-app": "^2.4.2",
|
|
|
|
"@octokit/auth-token": "^2.4.0",
|
2020-02-18 14:42:57 +00:00
|
|
|
"@octokit/rest": "^16.43.1",
|
|
|
|
"axios": "^0.19.2",
|
2019-08-02 19:12:03 +01:00
|
|
|
"express": "^4.17.1",
|
2019-08-05 15:11:42 +01:00
|
|
|
"ioredis": "^4.14.0",
|
2019-08-02 19:12:03 +01:00
|
|
|
"markdown-it": "^9.0.1",
|
2020-02-18 14:42:57 +00:00
|
|
|
"matrix-bot-sdk": "^0.5.0",
|
2019-08-05 15:11:42 +01:00
|
|
|
"micromatch": "^4.0.2",
|
2019-08-06 15:04:58 +01:00
|
|
|
"mime": "^2.4.4",
|
|
|
|
"mocha": "^6.2.0",
|
|
|
|
"node-emoji": "^1.10.0",
|
2019-08-08 14:38:31 +01:00
|
|
|
"uuid": "^3.3.2",
|
2019-08-02 19:12:03 +01:00
|
|
|
"winston": "^3.2.1",
|
|
|
|
"yaml": "^1.6.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-08-06 15:05:32 +01:00
|
|
|
"@types/chai": "^4.1.7",
|
2019-08-06 15:04:58 +01:00
|
|
|
"@types/express": "^4.17.0",
|
|
|
|
"@types/ioredis": "^4.0.13",
|
|
|
|
"@types/markdown-it": "^0.0.8",
|
2019-08-05 15:11:42 +01:00
|
|
|
"@types/micromatch": "^3.1.0",
|
2019-08-06 15:04:58 +01:00
|
|
|
"@types/mime": "^2.0.1",
|
2019-08-06 15:05:32 +01:00
|
|
|
"@types/mocha": "^5.2.7",
|
2019-08-02 19:12:03 +01:00
|
|
|
"@types/node": "^12.6.9",
|
2019-08-06 15:04:58 +01:00
|
|
|
"@types/node-emoji": "^1.8.1",
|
2019-08-08 14:38:31 +01:00
|
|
|
"@types/uuid": "^3.4.5",
|
2019-08-02 19:12:03 +01:00
|
|
|
"@types/yaml": "^1.0.2",
|
2019-08-06 15:05:32 +01:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"ts-node": "^8.3.0",
|
2019-08-06 18:40:15 +01:00
|
|
|
"tslint": "^5.18.0",
|
2020-02-18 14:42:57 +00:00
|
|
|
"typescript": "^3.7.5"
|
2019-08-02 19:12:03 +01:00
|
|
|
}
|
|
|
|
}
|