hookshot/package.json

59 lines
1.7 KiB
JSON
Raw Normal View History

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",
"prepare": "yarn build",
2020-11-29 19:55:08 +00:00
"start": "node lib/App/BridgeApp.js",
2019-08-07 18:28:58 +01:00
"start:app": "node lib/App/BridgeApp.js",
"start:webhooks": "node lib/App/GithubWebhookApp.js",
"start:matrixsender": "node lib/App/MatrixSenderApp.js",
2020-11-22 21:31:39 +00:00
"test": "mocha -r ts-node/register tests/*.ts",
"lint": "eslint -c .eslintrc.js src/**/*.ts"
2019-08-02 19:12:03 +01:00
},
"dependencies": {
"@octokit/auth-app": "^2.10.2",
"@octokit/auth-token": "^2.4.3",
"@octokit/rest": "^18.0.9",
"axios": "^0.21.0",
2019-08-02 19:12:03 +01:00
"express": "^4.17.1",
"ioredis": "^4.19.2",
"markdown-it": "^12.0.2",
"matrix-bot-sdk": "^0.5.8",
2019-08-05 15:11:42 +01:00
"micromatch": "^4.0.2",
"mime": "^2.4.6",
"mocha": "^8.2.1",
2019-08-06 15:04:58 +01:00
"node-emoji": "^1.10.0",
2020-07-19 18:56:59 +01:00
"reflect-metadata": "^0.1.13",
"string-argv": "v0.3.1",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"yaml": "^1.10.0"
2019-08-02 19:12:03 +01:00
},
"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",
2019-08-06 15:04:58 +01:00
"@types/node-emoji": "^1.8.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
2019-08-06 15:05:32 +01:00
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-plugin-mocha": "^8.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
2019-08-02 19:12:03 +01:00
}
}