Commits on Source 126
26 additional commits have been omitted to prevent performance issues.
Affichage de
- .eslintrc 58 ajouts, 0 suppression.eslintrc
- .github/CODEOWNERS 1 ajout, 0 suppression.github/CODEOWNERS
- .github/pull_request_template.md 3 ajouts, 0 suppression.github/pull_request_template.md
- .github/workflows/docker.yml 44 ajouts, 0 suppression.github/workflows/docker.yml
- .github/workflows/newsfile.yml 22 ajouts, 0 suppression.github/workflows/newsfile.yml
- .github/workflows/sign-off.yml 10 ajouts, 0 suppression.github/workflows/sign-off.yml
- .github/workflows/tests.yml 28 ajouts, 0 suppression.github/workflows/tests.yml
- .gitignore 10 ajouts, 0 suppression.gitignore
- .npmrc 2 ajouts, 0 suppression.npmrc
- .travis.yml 0 ajout, 29 suppressions.travis.yml
- CHANGELOG.md 73 ajouts, 0 suppressionCHANGELOG.md
- CONTRIBUTING.md 12 ajouts, 62 suppressionsCONTRIBUTING.md
- Dockerfile 5 ajouts, 5 suppressionsDockerfile
- README.md 30 ajouts, 8 suppressionsREADME.md
- changelog.d/git.keep 0 ajout, 0 suppressionchangelog.d/git.keep
- config/config.sample.yaml 16 ajouts, 0 suppressionconfig/config.sample.yaml
- config/config.schema.yaml 25 ajouts, 0 suppressionconfig/config.schema.yaml
- docs/howto.md 4 ajouts, 4 suppressionsdocs/howto.md
- docs/puppeting.md 1 ajout, 1 suppressiondocs/puppeting.md
- package.json 18 ajouts, 13 suppressionspackage.json
.eslintrc
0 → 100644
.github/CODEOWNERS
0 → 100644
.github/pull_request_template.md
0 → 100644
.github/workflows/docker.yml
0 → 100644
.github/workflows/newsfile.yml
0 → 100644
.github/workflows/sign-off.yml
0 → 100644
.github/workflows/tests.yml
0 → 100644
.npmrc
0 → 100644
.travis.yml
supprimé
100644 → 0
CHANGELOG.md
0 → 100644
changelog.d/git.keep
0 → 100644
{ | { | ||
"name": "matrix-appservice-discord", | "name": "matrix-appservice-discord", | ||
"version": "1.0.0", | "version": "3.1.1", | ||
"description": "A bridge between Matrix and Discord", | "description": "A bridge between Matrix and Discord", | ||
"main": "discordas.js", | "main": "discordas.js", | ||
"engines": { | |||
"npm": "please-use-yarn", | |||
"node": ">=16 <=18" | |||
}, | |||
"scripts": { | "scripts": { | ||
"test": "mocha -r ts-node/register test/config.ts test/test_*.ts test/**/test_*.ts", | "test": "mocha -r ts-node/register test/config.ts test/test_*.ts test/**/test_*.ts", | ||
"lint": "tslint --project ./tsconfig.json -t stylish", | "lint": "eslint -c .eslintrc --max-warnings 200 src/**/*.ts test/**/*.ts", | ||
"coverage": "nyc mocha -r ts-node/register test/config.ts test/test_*.ts test/**/test_*.ts", | "coverage": "tsc && nyc mocha build/test/config.js build/test", | ||
"build": "tsc", | "build": "tsc", | ||
"postinstall": "npm run build", | "postinstall": "yarn build", | ||
"start": "npm run-script build && node ./build/src/discordas.js -c config.yaml", | "start": "yarn build && node ./build/src/discordas.js -c config.yaml", | ||
"debug": "npm run-script build && node --inspect ./build/src/discordas.js -c config.yaml", | "debug": "yarn build && node --inspect ./build/src/discordas.js -c config.yaml", | ||
"addbot": "node ./build/tools/addbot.js", | "addbot": "node ./build/tools/addbot.js", | ||
"adminme": "node ./build/tools/adminme.js", | "adminme": "node ./build/tools/adminme.js", | ||
"usertool": "node ./build/tools/userClientTools.js", | "usertool": "node ./build/tools/userClientTools.js", | ||
... | @@ -36,7 +40,8 @@ | ... | @@ -36,7 +40,8 @@ |
}, | }, | ||
"homepage": "https://github.com/Half-Shot/matrix-appservice-discord#readme", | "homepage": "https://github.com/Half-Shot/matrix-appservice-discord#readme", | ||
"dependencies": { | "dependencies": { | ||
"better-discord.js": "git://github.com/Sorunome/better-discord.js.git#b5a28499899fe2d9e6aa1aa3b3c5d693ae672117", | "@deurstann/matrix-discord-parser": "1.10.7", | ||
"better-discord.js": "github:matrix-org/better-discord.js#5024781db755259e88abe915630b7d5b3ba5f48f", | |||
"better-sqlite3": "^7.1.0", | "better-sqlite3": "^7.1.0", | ||
"command-line-args": "^5.1.1", | "command-line-args": "^5.1.1", | ||
"command-line-usage": "^6.1.0", | "command-line-usage": "^6.1.0", | ||
... | @@ -44,10 +49,8 @@ | ... | @@ -44,10 +49,8 @@ |
"escape-string-regexp": "^4.0.0", | "escape-string-regexp": "^4.0.0", | ||
"js-yaml": "^3.14.0", | "js-yaml": "^3.14.0", | ||
"marked": "^1.2.2", | "marked": "^1.2.2", | ||
"matrix-bot-sdk": "0.5.4", | "matrix-appservice-bridge": "^5.0.0", | ||
"matrix-discord-parser": "0.1.5", | |||
"mime": "^2.4.6", | "mime": "^2.4.6", | ||
"node-html-parser": "^1.2.19", | |||
"p-queue": "^6.4.0", | "p-queue": "^6.4.0", | ||
"pg-promise": "^10.5.6", | "pg-promise": "^10.5.6", | ||
"prom-client": "^12.0.0", | "prom-client": "^12.0.0", | ||
... | @@ -65,15 +68,17 @@ | ... | @@ -65,15 +68,17 @@ |
"@types/marked": "^1.1.0", | "@types/marked": "^1.1.0", | ||
"@types/mime": "^2.0.2", | "@types/mime": "^2.0.2", | ||
"@types/mocha": "^7.0.2", | "@types/mocha": "^7.0.2", | ||
"@types/node": "^12", | "@types/node": "^14", | ||
"@typescript-eslint/eslint-plugin": "^5.4.0", | |||
"@typescript-eslint/parser": "^5.4.0", | |||
"chai": "^4.2.0", | "chai": "^4.2.0", | ||
"eslint": "^7.4.0", | |||
"mocha": "^8.0.1", | "mocha": "^8.0.1", | ||
"nyc": "^15.1.0", | "nyc": "^15.1.0", | ||
"proxyquire": "^1.7.11", | "proxyquire": "^1.7.11", | ||
"source-map-support": "^0.5.19", | "source-map-support": "^0.5.19", | ||
"ts-node": "^8.10.2", | "ts-node": "^8.10.2", | ||
"tslint": "^5.20.1", | "typescript": "^4.2.3", | ||
"typescript": "^3.9.5", | |||
"why-is-node-running": "^2.2.0" | "why-is-node-running": "^2.2.0" | ||
} | } | ||
} | } |