UNPKG

@mbakgun/n8n-nodes-slack-socket-mode

Version:

Slack Socket Mode Node for n8n that allows you to use +100 Slack events in your n8n instance with proxy mode

44 lines (43 loc) 1.35 kB
{ "name": "@slack/logger", "version": "4.0.1", "description": "Logging utility used by Node Slack SDK", "author": "Slack Technologies, LLC", "license": "MIT", "keywords": [ "slack", "logging" ], "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "engines": { "node": ">= 18", "npm": ">= 8.6.0" }, "repository": { "type": "git", "url": "git+https://github.com/slackapi/node-slack-sdk.git" }, "homepage": "https://docs.slack.dev/tools/node-slack-sdk/", "publishConfig": { "access": "public" }, "bugs": { "url": "https://github.com/slackapi/node-slack-sdk/issues" }, "scripts": { "build": "npm run build:clean && tsc", "build:clean": "shx rm -rf ./dist", "docs": "npx typedoc --plugin typedoc-plugin-markdown", "prepack": "npm run build", "test": "npm run test:unit", "test:node18": "npm run build && node --test --test-reporter=spec --import tsx --test src/index.test.ts", "test:unit": "npm run build && node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/index.test.ts" }, "dependencies": { "@types/node": ">=18" } }