hookshot/package.json

85 lines
2.7 KiB
JSON
Raw Normal View History

2019-08-02 19:12:03 +01:00
{
2021-11-22 16:02:07 +00:00
"name": "matrix-hookshot",
2021-04-16 13:06:47 +01:00
"version": "0.1.0",
2019-08-02 19:12:03 +01:00
"description": "A bridge that displays GitHub issues/PRs as rooms.",
"main": "lib/app.js",
2021-11-22 16:02:07 +00:00
"repository": "https://github.com/Half-Shot/matrix-hookshot",
2019-08-02 19:12:03 +01:00
"author": "Half-Shot",
2021-11-29 16:33:17 +00:00
"license": "Apache-2.0",
2019-08-02 19:12:03 +01:00
"private": false,
2021-11-21 12:34:56 +00:00
"napi": {
2021-11-22 16:02:07 +00:00
"name": "matrix-hookshot-rs"
2021-11-21 12:34:56 +00:00
},
2021-11-21 13:21:58 +00:00
"engines": {
"node": ">=12"
},
2019-08-02 19:12:03 +01:00
"scripts": {
2020-12-12 13:19:55 +00:00
"build:web": "snowpack build",
2020-12-12 20:29:33 +00:00
"build:app": "tsc --project tsconfig.json",
2021-11-21 12:34:56 +00:00
"build:app:rs": "napi build --release ./lib",
2020-12-12 13:19:55 +00:00
"dev:web": "snowpack dev",
2021-11-21 12:34:56 +00:00
"build": "yarn run build:web && yarn run build:app:rs && yarn run build:app",
"prepare": "yarn build",
2020-12-12 20:29:33 +00:00
"start": "node --require source-map-support/register lib/App/BridgeApp.js",
"start:app": "node --require source-map-support/register lib/App/BridgeApp.js",
"start:webhooks": "node --require source-map-support/register lib/App/GithubWebhookApp.js",
"start:matrixsender": "node --require source-map-support/register lib/App/MatrixSenderApp.js",
2021-11-21 12:34:56 +00:00
"test": "mocha -r ts-node/register tests/*.ts tests/**/*.ts",
2020-12-13 14:55:36 +00:00
"lint": "eslint -c .eslintrc.js src/**/*.ts",
2021-04-11 16:04:08 +01:00
"generate-default-config": "node lib/Config/Defaults.js --config > config.sample.yml"
2019-08-02 19:12:03 +01:00
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
2021-04-11 15:18:49 +01:00
"@octokit/auth-app": "^3.3.0",
"@octokit/auth-token": "^2.4.5",
2021-09-07 17:35:18 +01:00
"@octokit/rest": "^18.10.0",
"@octokit/webhooks": "^9.1.2",
2021-11-22 17:33:13 +00:00
"axios": "^0.24.0",
2020-12-12 20:29:33 +00:00
"cors": "^2.8.5",
2019-08-02 19:12:03 +01:00
"express": "^4.17.1",
2021-11-22 17:33:13 +00:00
"ioredis": "^4.28.0",
"jira-client": "^8.0.0",
2021-11-22 17:33:13 +00:00
"markdown-it": "^12.2.0",
2021-09-07 17:35:18 +01:00
"matrix-bot-sdk": "^0.5.19",
2021-11-22 17:33:13 +00:00
"matrix-widget-api": "^0.1.0-beta.17",
2021-04-11 15:18:49 +01:00
"micromatch": "^4.0.4",
2021-11-22 17:33:13 +00:00
"mime": "^3.0.0",
"node-emoji": "^1.11.0",
2020-07-19 18:56:59 +01:00
"reflect-metadata": "^0.1.13",
2021-11-22 17:33:13 +00:00
"source-map-support": "^0.5.21",
2021-04-11 15:18:49 +01:00
"string-argv": "^0.3.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
2021-11-22 17:33:13 +00:00
"yaml": "^1.10.2"
2019-08-02 19:12:03 +01:00
},
"devDependencies": {
"@fontsource/open-sans": "^4.2.2",
2021-11-21 12:34:56 +00:00
"@napi-rs/cli": "^1.3.5",
2021-04-11 15:18:49 +01:00
"@prefresh/snowpack": "^3.1.2",
"@snowpack/plugin-typescript": "^1.2.1",
2021-11-22 17:33:13 +00:00
"@types/chai": "^4.2.22",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.1",
"@types/markdown-it": "^12.2.3",
"@types/micromatch": "^4.0.1",
"@types/mime": "^2.0.3",
2021-11-22 17:33:13 +00:00
"@types/mocha": "^9.0.0",
2021-11-21 12:34:56 +00:00
"@types/node": "^12",
2021-11-22 17:33:13 +00:00
"@types/node-emoji": "^1.8.1",
"@types/uuid": "^8.3.3",
"@types/jira-client": "^7.1.0",
2021-11-22 17:33:13 +00:00
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
2021-04-11 15:18:49 +01:00
"chai": "^4.3.4",
2021-11-22 17:33:13 +00:00
"eslint": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
2021-04-11 15:18:49 +01:00
"mini.css": "^3.0.1",
2021-11-22 17:33:13 +00:00
"mocha": "^8.2.1",
"preact": "^10.5.15",
2021-11-21 13:21:58 +00:00
"snowpack": "^3.8.8",
2021-11-22 17:33:13 +00:00
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
2019-08-02 19:12:03 +01:00
}
}