hookshot/package.json
2019-08-07 18:28:58 +01:00

49 lines
1.4 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",
"test": "mocha -r ts-node/register tests/**/*.ts",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"@octokit/rest": "^16.28.7",
"express": "^4.17.1",
"ioredis": "^4.14.0",
"markdown-it": "^9.0.1",
"matrix-bot-sdk": "^0.3.9",
"micromatch": "^4.0.2",
"mime": "^2.4.4",
"mocha": "^6.2.0",
"node-emoji": "^1.10.0",
"request-promise-native": "^1.0.7",
"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/request-promise-native": "^1.0.16",
"@types/yaml": "^1.0.2",
"chai": "^4.2.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}