nestjs-telegraf/package.json

70 lines
1.7 KiB
JSON
Raw Normal View History

2019-02-28 11:29:26 +03:00
{
2020-04-24 13:59:33 +03:00
"name": "nestjs-telegraf",
"version": "1.3.0",
2020-03-28 00:03:24 +03:00
"description": "Telegraf module for NestJS",
"keywords": [
"nest",
"nestjs",
2020-03-28 00:03:24 +03:00
"nestjs-module",
"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",
"bugs": {
2020-04-24 13:59:33 +03:00
"url": "https://github.com/bukhalo/nestjs-telegraf/issues"
},
2019-02-28 11:29:26 +03:00
"license": "MIT",
2020-04-24 13:59:33 +03:00
"author": "Aleksandr Bukhalo <a@bukhalo.com>",
"contributors": [
2020-04-24 13:59:33 +03:00
"Aleksandr Bukhalo <a@bukhalo.com> (https://bukhalo.com/)",
"Igor Kamyshev <igor@kamyshev.me> (https://kamyshev.me/)"
],
2020-04-24 13:59:33 +03:00
"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-31 18:40:55 +03:00
"publish:npm": "npm publish --access public",
"test": ""
},
"dependencies": {
"telegraf": "3.38.0"
},
"devDependencies": {
"@nestjs/common": "7.4.2",
"@nestjs/core": "7.4.2",
"@typescript-eslint/eslint-plugin": "3.10.0",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"prettier": "2.1.0",
"reflect-metadata": "0.1.13",
2020-08-14 14:13:00 +03:00
"rxjs": "6.6.2",
"typescript": "4.0.2"
2019-02-28 11:29:26 +03:00
},
"peerDependencies": {
"@nestjs/common": "^6.7.0 || ^7.0.0",
"@nestjs/core": "^6.7.0 || ^7.0.0",
"reflect-metadata": "^0.1.13"
2019-02-28 11:29:26 +03:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
2019-02-28 11:29:26 +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
}