forked from matrix-org/matrix-appservice-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.19 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-bridge",
"version": "10.2.1",
"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": ">=20"
},
"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": {
"@types/nedb": "^1.8.16",
"@alloc/quick-lru": "^5.2.0",
"@vector-im/matrix-bot-sdk": "^0.7.0-element.0",
"chalk": "^4.1.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"extend": "^3.0.2",
"ip-cidr": "^3.0.0",
"is-my-json-valid": "^2.20.5",
"js-yaml": "^4.0.0",
"matrix-appservice": "^2.0.0",
"nopt": "^5.0.0",
"p-queue": "^6.6.2",
"pkginfo": "^0.4.1",
"postgres": "^3.4.3",
"prom-client": "^15.1.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.5.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/extend": "^3.0.4",
"@types/jasmine": "^4.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/nopt": "^3.0.32",
"@types/jsbn": "^1.2.33",
"@types/pkginfo": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"typescript": "^5.3.3",
"winston-transport": "^4.6.0"
},
"peerDependencies": {
"nedb": "^1.8.0"
}
}