forked from matrix-org/matrix-bifrost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.87 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
102
103
104
105
106
107
{
"name": "matrix-bifrost",
"version": "0.3.0",
"description": "Multi protocol bridging for Matrix.",
"engines": {
"node": ">=12"
},
"main": "lib/Program.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"lint": "eslint -c .eslintrc 'test/**/*.ts' 'src/**/*.ts'",
"start": "node 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": "^3.17.4",
"html-entities": "^2.3.2",
"htmlparser2": "^6.1.0",
"leven": "^3.1.0",
"marked": "^2.1.3",
"matrix-appservice-bridge": "^2.7.0",
"pg": "8.7.1",
"prom-client": "^13.1.0",
"quick-lru": "^5.1.1",
"axios": "^0.21.1",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/marked": "^2.0.4",
"@types/mocha": "^9.0.0",
"@types/nedb": "^1.8.12",
"@types/node": "^12",
"@types/pg": "^7.14.5",
"@types/xmpp__jid": "^1.3.1",
"@types/xmpp__xml": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^36.0.6",
"mocha": "^9.0.3",
"mock-require": "^3.0.3",
"nedb": "^1.8.0",
"nyc": "^15.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"node-purple": "git+https://github.com/matrix-org/node-purple#8ad1572d544d9b5e5add446626a37903b4576c11"
},
"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"
}
}