-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.2 KB
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.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": ">=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": {
"@alloc/quick-lru": "^5.2.0",
"@types/nedb": "^1.8.16",
"@vector-im/matrix-bot-sdk": "^0.7.0-element.1",
"chalk": "^5.3.0",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"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": "^7.2.0",
"p-queue": "^6.6.2",
"pkginfo": "^0.4.1",
"postgres": "^3.4.3",
"prom-client": "^15.1.0",
"winston": "^3.12.0",
"winston-daily-rotate-file": "^5.0.0"
},
"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/jsbn": "^1.2.33",
"@types/node": "^20.11.30",
"@types/nopt": "^3.0.32",
"@types/pkginfo": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.2",
"winston-transport": "^4.7.0"
},
"peerDependencies": {
"nedb": "^1.8.0"
}
}