nestjs-telegraf/package.json

68 lines
1.6 KiB
JSON
Raw Normal View History

2019-02-28 11:29:26 +03:00
{
"name": "nestjs-telegraf",
2020-02-29 21:56:35 +03:00
"version": "0.7.3",
"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",
"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",
"publish:npm": "npm publish --access public"
},
"dependencies": {
"lodash": "4.17.15"
2019-02-28 11:29:26 +03:00
},
"devDependencies": {
"@nestjs/common": "6.11.8",
"@nestjs/core": "6.11.8",
"@types/lodash": "4.14.149",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"telegraf": "3.36.0",
"typescript": "3.8.3"
2019-02-28 11:29:26 +03:00
},
"peerDependencies": {
"@nestjs/common": "^6.7.0",
"@nestjs/core": "^6.7.0",
"reflect-metadata": "^0.1.13",
"telegraf": "^3.35.0"
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
}