UNPKG

@slack/webhook

Version:

Official library for using the Slack Platform's Incoming Webhooks

53 lines (52 loc) 1.56 kB
{ "name": "@slack/webhook", "version": "7.0.9", "description": "Official library for using the Slack Platform's Incoming Webhooks", "author": "Slack Technologies, LLC", "license": "MIT", "keywords": [ "slack", "request", "client", "http", "api", "proxy" ], "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/webhook/", "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/IncomingWebhook.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/IncomingWebhook.test.ts" }, "dependencies": { "@slack/types": "^2.20.1", "@types/node": ">=18", "axios": "^1.15.0" }, "devDependencies": { "nock": "^14.0.6" } }