This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "matrix-appservice-mattermost",
"version": "0.1.2",
"description": "",
"repository": "https://github.com/dalcde/matrix-appservice-mattermost",
"main": "build/Main.js",
"bin": "build/index.js",
"engines": {
"node": ">=10.16"
},
"scripts": {
"preinstall": "git config core.hooksPath .githooks",
"build": "tsc && typescript-json-schema --noExtraProps --required src/Config.ts Config -o build/config-schema.json",
"test": "tape build{,/**}/*.test.js",
"integration": "node build/index.js -r -c config.sample.yaml -f docker/synapse/registration.yaml && tape build/tests/**.js",
"lint": "prettier -c . && eslint --max-warnings=0 '*/**/*.ts'",
"fmt": "prettier --write .",
"fmt-lint": "prettier --write . && eslint --max-warnings=0 '*/**/*.ts'",
"fix": "eslint '*/**/*.ts' --fix"
},
"author": "Dexter Chua",
"license": "MIT",
"dependencies": {
"ajv": "^8.0.0",
"ajv-formats": "^2.1.1",
"express": "^4.17.2",
"form-data": "^4.0.0",
"js-yaml": "^4.0.0",
"loglevel": "^1.8.0",
"marked": "^4.0.0",
"matrix-js-sdk": "^8.2.0",
"node-fetch": "^2.6.0",
"pg": "^8.5.1",
"turndown": "^7.0.0",
"typeorm": "^0.2.29",
"ws": "^8.0.0",
"yargs": "^16.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/marked": "^4.0.1",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.5.7",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"prettier": "^2.3.0",
"sqlite3": "^5.0.0",
"tape": "^5.0.1",
"typescript": "^4.5.0",
"typescript-json-schema": "^0.50.0"
},
"renovate": {
"extends": [
"config:base"
],
"rebaseWhen": "behind-base-branch",
"rangeStrategy": "update-lockfile",
"packageRules": [
{
"packageNames": [
"node"
],
"enabled": false
}
]
}
}