nestjs-slack-bolt
Version:
A NestJS module for seamless integration with Slack using the Bolt SDK
114 lines (113 loc) • 2.98 kB
JSON
{
"name": "nestjs-slack-bolt",
"version": "1.5.0",
"description": "A NestJS module for seamless integration with Slack using the Bolt SDK",
"author": "bamada",
"license": "MIT",
"homepage": "https://github.com/bamada/nest-slack-bolt#readme",
"repository": {
"type": "git",
"url": "https://github.com/bamada/nest-slack-bolt"
},
"keywords": [
"nestjs",
"slack",
"bolt",
"@slack/bolt",
"api",
"integration",
"webhook"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepublishOnly": "npm run build",
"publish:next": "npm publish --access public --tag next",
"release": "release-it",
"prepare": "husky",
"clean": "npm cache clean --force"
},
"dependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/config": "4.0.2",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"@slack/bolt": "4.6.0",
"reflect-metadata": "0.2.2"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-angular": "20.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@nestjs/cli": "11.0.14",
"@nestjs/schematics": "11.0.9",
"@nestjs/testing": "11.1.10",
"@release-it/conventional-changelog": "^10.0.1",
"@types/express": "^5.0.0",
"@types/jest": "30.0.0",
"@types/node": "24.10.4",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"globals": "^16.0.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"release-it": "^19.0.0",
"rimraf": "^6.0.0",
"rxjs": "7.8.2",
"supertest": "7.1.4",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.3"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"reflect-metadata": "0.2.2",
"rxjs": "^7.2.0"
},
"engines": {
"node": ">= 20"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}