-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
101 lines (101 loc) · 2.72 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "matrix-bifrost",
"version": "1.0.3",
"description": "Multi protocol bridging for Matrix.",
"engines": {
"node": ">=20"
},
"main": "lib/Program.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"lint": "eslint -c .eslintrc 'test/**/*.ts' 'src/**/*.ts'",
"start": "node --enable-source-maps lib/Program.js -c config.yaml",
"genreg": "node lib/Program.js -r -c config.yaml",
"test": "mocha -r ts-node/register test/test.ts test/*.ts test/**/*.ts",
"changelog": "scripts/towncrier.sh",
"coverage": "nyc mocha -r ts-node/register test/test.ts test/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrix-org/matrix-bifrost.git"
},
"keywords": [],
"author": "Will Hunt <will@half-shot.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-bifrost/issues"
},
"homepage": "https://github.com/matrix-org/matrix-bifrost",
"dependencies": {
"@xmpp/component": "^0.12.0",
"@xmpp/component-core": "^0.12.0",
"@xmpp/jid": "^0.12.0",
"@xmpp/reconnect": "^0.12.0",
"@xmpp/xml": "^0.12.0",
"fast-xml-parser": "^4.2.5",
"html-entities": "^2.4.0",
"htmlparser2": "^9.1.0",
"leven": "^3.0.0",
"marked": "^11.1.1",
"nedb": "^1.8.0",
"matrix-appservice-bridge": "^10.2.0",
"pg": "8.11.3",
"prom-client": "^15.1.0",
"quick-lru": "^5.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tsconfig/node20": "20.1.2",
"@types/chai": "^4.3.11",
"@types/mocha": "^9.0.0",
"@types/node": "^20",
"@types/pg": "^7.14.5",
"@types/xmpp__jid": "^1.3.5",
"@types/xmpp__xml": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"chai": "^4",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"mocha": "^9.0.3",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"node-purple": "git+https://github.com/matrix-org/node-purple#1adfe21219863824a1fcb4c1de35b5b44cccca37"
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 85,
"statements": 85,
"functions": 75,
"branches": 75,
"include": [
"src"
],
"exclude": [
"src/Program.ts"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"cache": true,
"all": true,
"instrument": true,
"sourceMap": true,
"report-dir": "./coverage"
}
}