hookshot/package.json
2020-11-29 19:55:21 +00:00

59 lines
1.7 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",
"prepare": "yarn build",
"start": "node lib/App/BridgeApp.js",
"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": "eslint -c .eslintrc.js src/**/*.ts"
},
"dependencies": {
"@octokit/auth-app": "^2.10.2",
"@octokit/auth-token": "^2.4.3",
"@octokit/rest": "^18.0.9",
"axios": "^0.21.0",
"express": "^4.17.1",
"ioredis": "^4.19.2",
"markdown-it": "^12.0.2",
"matrix-bot-sdk": "^0.5.8",
"micromatch": "^4.0.2",
"mime": "^2.4.6",
"mocha": "^8.2.1",
"node-emoji": "^1.10.0",
"reflect-metadata": "^0.1.13",
"string-argv": "v0.3.1",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/ioredis": "^4.17.8",
"@types/markdown-it": "^10.0.3",
"@types/micromatch": "^4.0.1",
"@types/mime": "^2.0.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12",
"@types/node-emoji": "^1.8.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-plugin-mocha": "^8.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}