rocketchat2matrix/package.json
2023-05-19 17:16:13 +02:00

36 lines
1.1 KiB
JSON

{
"author": "HerHde",
"description": "Rocket.Chat to Matrix migration script",
"license": "AGPL-3.0-or-later",
"main": "dist/app.js",
"name": "rocketchat2matrix",
"repository": {
"type": "git",
"url": "https://git.verdigado.com/NB-Public/rocketchat2matrix"
},
"scripts": {
"format": "prettier 'src/**/*.ts' --write",
"lint": "eslint src/ --ext .ts",
"lint-fix": "eslint src/ --fix --ext .ts",
"prefix": "npm run format",
"fix": "npm run lint-fix",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "rm -rf dist/ && tsc",
"start": "npm run compile && node dist/app.js"
},
"version": "0.1.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "2.8.8",
"typescript": "^5.0.4"
}
}