2019-02-28 11:29:26 +03:00
|
|
|
{
|
2020-01-12 00:57:46 +03:00
|
|
|
"name": "nestjs-telegraf",
|
2020-03-19 22:00:21 +03:00
|
|
|
"version": "1.0.0-alpha.1",
|
2020-01-12 14:54:23 +03:00
|
|
|
"description": "Telegraf module for Nest framework",
|
|
|
|
"keywords": [
|
|
|
|
"nest",
|
|
|
|
"nestjs",
|
|
|
|
"nodejs",
|
|
|
|
"typescript",
|
|
|
|
"telegraf",
|
|
|
|
"telegram",
|
|
|
|
"telegram bot",
|
|
|
|
"telegram bot api",
|
|
|
|
"bot",
|
|
|
|
"bot api",
|
|
|
|
"bot framework"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/bukhalo/nestjs-telegraf#readme",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/bukhalo/nestjs-telegraf/issues",
|
|
|
|
"email": "aleksandr@bukhalo.com"
|
|
|
|
},
|
2019-02-28 11:29:26 +03:00
|
|
|
"license": "MIT",
|
2020-01-12 14:54:23 +03:00
|
|
|
"author": "Aleksandr Bukhalo <aleksandr@bukhalo.com>",
|
|
|
|
"contributors": [
|
|
|
|
"Aleksandr Bukhalo <aleksandr@bukhalo.com> (https://bukhalo.com/)",
|
|
|
|
"Igor Kamyshev <igor@kamyshev.me> (https://kamyshev.me/)"
|
|
|
|
],
|
|
|
|
"repository": "git@github.com:bukhalo/nestjs-telegraf.git",
|
|
|
|
"scripts": {
|
|
|
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"prepublish:npm": "npm run build",
|
2020-03-28 10:54:05 +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-03-31 06:39:18 +03:00
|
|
|
"telegraf": "3.37.0"
|
2020-03-19 17:48:40 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"devDependencies": {
|
2020-03-29 20:42:37 +03:00
|
|
|
"@nestjs/common": "7.0.7",
|
|
|
|
"@nestjs/core": "7.0.7",
|
2020-02-13 17:08:19 +03:00
|
|
|
"husky": "4.2.3",
|
2020-03-31 17:09:54 +03:00
|
|
|
"lint-staged": "10.1.1",
|
2020-03-24 14:09:19 +03:00
|
|
|
"prettier": "2.0.2",
|
2020-01-23 21:29:45 +03:00
|
|
|
"reflect-metadata": "0.1.13",
|
2020-02-29 20:52:50 +03:00
|
|
|
"typescript": "3.8.3"
|
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
|
|
|
}
|