forked from matrix-org/matrix-appservice-bridge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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
{
"name": "@rocket.chat/forked-matrix-appservice-bridge",
"version": "4.1.0",
"description": "Bridging infrastructure for Matrix Application Services",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"prepare": "npm run build",
"gendoc": "typedoc",
"lint": "eslint -c .eslintrc.json src/**/*.ts",
"test": "ts-node node_modules/jasmine/bin/jasmine --stop-on-failure=true",
"check": "npm run lint && npm test",
"ci-test": "nyc -x \"**/spec/**\" --report text jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrix-org/matrix-appservice-bridge.git"
},
"keywords": [
"matrix-org"
],
"engines": {
"node": ">=14"
},
"author": "Matrix.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-appservice-bridge/issues"
},
"homepage": "https://github.com/matrix-org/matrix-appservice-bridge#readme",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"@rocket.chat/forked-matrix-bot-sdk": "^0.6.0-beta.2",
"axios": "^0.23.0",
"chalk": "^4.1.0",
"express-rate-limit": "^6.2.0",
"extend": "^3.0.2",
"ip-cidr": "^3.0.4",
"is-my-json-valid": "^2.20.5",
"js-yaml": "^4.0.0",
"matrix-appservice": "github:debdutdeb/matrix-appservice-node#rocket.chat",
"matrix-js-sdk": "^12.4.1",
"nedb": "^1.8.0",
"nopt": "^5.0.0",
"p-queue": "^6.6.2",
"prom-client": "^14.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/extend": "^3.0.1",
"@types/jasmine": "^3.8.2",
"@types/js-yaml": "^4.0.0",
"@types/nedb": "^1.8.11",
"@types/node": "^12",
"@types/nopt": "^3.0.29",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"jasmine": "^3.7.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.2.1",
"typedoc": "^0.22.9",
"typescript": "^4.4.3",
"winston-transport": "^4.4.0"
}
}