forked from matrix-org/matrix-appservice-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "matrix-appservice-slack",
"version": "1.10.0",
"description": "A Matrix <--> Slack bridge",
"engines": {
"node": ">=12 16<="
},
"main": "app.js",
"scripts": {
"prepare": "npm run build",
"start": "node ./lib/app.js",
"build": "tsc --build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha --reporter list --ui bdd --require ts-node/register --recursive tests/unit/*.ts",
"test:integration": "mocha --exit --reporter list --ui bdd --require ts-node/register --recursive tests/integration/*.ts",
"test:postgres": "SLACKBRIDGE_TEST_ENABLEPG=yes mocha --reporter list --ui bdd --require ts-node/register --recursive tests/integration/PgDatastoreTest.ts",
"lint": "eslint -c .eslintrc.js ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrix-org/matrix-appservice-slack.git"
},
"keywords": [
"matrix-org",
"slack"
],
"author": "Matrix.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-appservice-slack/issues"
},
"homepage": "https://github.com/matrix-org/matrix-appservice-slack#readme",
"dependencies": {
"@slack/logger": "^2.0.0",
"@slack/rtm-api": "^5.0.5",
"@slack/web-api": "^5.15.0",
"axios": "^0.24.0",
"escape-string-regexp": "^4.0.0",
"matrix-appservice-bridge": "^3.2.0",
"minimist": "^1.2.5",
"nedb": "^1.8.0",
"node-emoji": "^1.10.0",
"nunjucks": "^3.2.3",
"p-queue": "^6.0.0",
"pg-promise": "^10.11.1",
"@alloc/quick-lru": "^5.2.0",
"randomstring": "^1.2.1",
"Slackdown": "git+https://Half-Shot@github.com/half-shot/slackdown.git",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/js-yaml": "^4.0.2",
"@types/mocha": "^8.2.3",
"@types/nedb": "^1.8.12",
"@types/node-emoji": "^1.8.1",
"@types/node": "^12",
"@types/nunjucks": "^3.1.5",
"@types/randomstring": "^1.1.7",
"@types/uuid": "^8.3.1",
"@types/yargs-parser": "^20.2.1",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chai": "^4.3.4",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint": "^8.4.1",
"js-yaml": "^4.1.0",
"mocha": "^9.0.2",
"prom-client": "^13.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.4.3"
}
}