mjolnir/package.json
David Teller 62b30b19d9 Replace shutdown_room API with DELETE /_synapse/admin/v1/rooms/<room_id> - Resolves #76, closes #96
As per https://github.com/matrix-org/synapse/issues/9052, shutdown_room is going away, to be replaced with DELETE /_synapse/admin/v1/rooms/<room_id>.
2021-08-17 12:54:24 +02:00

34 lines
897 B
JSON

{
"name": "mjolnir",
"version": "0.1.18",
"description": "A moderation tool for Matrix",
"main": "lib/index.js",
"repository": "git@github.com:matrix-org/mjolnir.git",
"author": "The Matrix.org Foundation C.I.C.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "yarn build && node lib/index.js",
"test": "ts-mocha --project ./tsconfig.json test/**/*.ts"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.5",
"eslint": "^7.31.0",
"expect": "^27.0.6",
"mocha": "^9.0.1",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"config": "^3.3.6",
"escape-html": "^1.0.3",
"js-yaml": "^4.1.0",
"matrix-bot-sdk": "^0.5.19"
}
}