2019-02-28 11:29:26 +03:00
|
|
|
{
|
2020-04-24 13:59:33 +03:00
|
|
|
"name": "nestjs-telegraf",
|
2020-08-14 14:27:36 +03:00
|
|
|
"version": "1.3.0",
|
2020-03-28 00:03:24 +03:00
|
|
|
"description": "Telegraf module for NestJS",
|
2020-01-12 14:54:23 +03:00
|
|
|
"keywords": [
|
|
|
|
"nest",
|
|
|
|
"nestjs",
|
2020-03-28 00:03:24 +03:00
|
|
|
"nestjs-module",
|
2020-01-12 14:54:23 +03:00
|
|
|
"telegraf",
|
|
|
|
"telegram",
|
|
|
|
"telegram bot",
|
|
|
|
"telegram bot api",
|
|
|
|
"bot",
|
|
|
|
"bot api",
|
|
|
|
"bot framework"
|
|
|
|
],
|
2020-04-24 13:59:33 +03:00
|
|
|
"homepage": "https://github.com/bukhalo/nestjs-telegraf#readme",
|
2020-01-12 14:54:23 +03:00
|
|
|
"bugs": {
|
2020-04-24 13:59:33 +03:00
|
|
|
"url": "https://github.com/bukhalo/nestjs-telegraf/issues"
|
2020-01-12 14:54:23 +03:00
|
|
|
},
|
2019-02-28 11:29:26 +03:00
|
|
|
"license": "MIT",
|
2020-04-24 13:59:33 +03:00
|
|
|
"author": "Aleksandr Bukhalo <a@bukhalo.com>",
|
2020-01-12 14:54:23 +03:00
|
|
|
"contributors": [
|
2020-04-24 13:59:33 +03:00
|
|
|
"Aleksandr Bukhalo <a@bukhalo.com> (https://bukhalo.com/)",
|
2020-01-12 14:54:23 +03:00
|
|
|
"Igor Kamyshev <igor@kamyshev.me> (https://kamyshev.me/)"
|
|
|
|
],
|
2020-04-24 13:59:33 +03:00
|
|
|
"repository": "git@github.com:bukhalo/nestjs-telegraf.git",
|
2020-01-12 14:54:23 +03:00
|
|
|
"scripts": {
|
|
|
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"prepublish:npm": "npm run build",
|
2020-03-31 18:40:55 +03:00
|
|
|
"publish:npm": "npm publish --access public",
|
|
|
|
"test": ""
|
2020-01-12 14:54:23 +03:00
|
|
|
},
|
2020-03-19 17:48:40 +03:00
|
|
|
"dependencies": {
|
2020-05-03 09:46:28 +03:00
|
|
|
"telegraf": "3.38.0"
|
2020-03-19 17:48:40 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"devDependencies": {
|
2020-09-01 10:16:53 +03:00
|
|
|
"@nestjs/common": "7.4.4",
|
2020-09-01 10:11:11 +03:00
|
|
|
"@nestjs/core": "7.4.4",
|
2020-09-01 10:15:25 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.0.0",
|
2020-08-26 11:47:58 +03:00
|
|
|
"@typescript-eslint/parser": "3.10.1",
|
2020-09-02 11:27:34 +03:00
|
|
|
"eslint": "7.8.1",
|
2020-04-24 13:43:51 +03:00
|
|
|
"eslint-config-prettier": "6.11.0",
|
2020-08-14 00:36:34 +03:00
|
|
|
"eslint-plugin-import": "2.22.0",
|
2020-09-08 09:58:31 +03:00
|
|
|
"husky": "4.3.0",
|
2020-09-04 15:02:04 +03:00
|
|
|
"lint-staged": "10.3.0",
|
2020-08-26 13:30:08 +03:00
|
|
|
"prettier": "2.1.1",
|
2020-01-23 21:29:45 +03:00
|
|
|
"reflect-metadata": "0.1.13",
|
2020-09-07 10:23:21 +03:00
|
|
|
"rxjs": "6.6.3",
|
2020-08-21 19:37:52 +03:00
|
|
|
"typescript": "4.0.2"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:54:23 +03:00
|
|
|
"peerDependencies": {
|
2020-03-24 13:18:30 +03:00
|
|
|
"@nestjs/common": "^6.7.0 || ^7.0.0",
|
|
|
|
"@nestjs/core": "^6.7.0 || ^7.0.0",
|
2020-03-19 17:48:40 +03:00
|
|
|
"reflect-metadata": "^0.1.13"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|
2020-01-23 21:16:37 +03:00
|
|
|
}
|