@slack/web-api
Version:
Official library for using the Slack Platform's Web API
72 lines (71 loc) • 2.3 kB
JSON
{
"name": "@slack/web-api",
"version": "8.0.0",
"description": "Official library for using the Slack Platform's Web API",
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"web-api",
"bot",
"client",
"http",
"api",
"proxy",
"rate-limiting",
"pagination"
],
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">= 20",
"npm": ">=9.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/node-slack-sdk.git"
},
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/web-api/",
"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 build && bash -c 'node --test-reporter=spec --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/*.test.ts'",
"test:coverage": "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/*.test.ts",
"test:integration": "npm run build && node test/integration/commonjs-project/index.js && node test/integration/esm-project/index.mjs && npm run test:integration:ts",
"test:integration:ts": "cd test/integration/ts-4.7-project && npm i && npm run build",
"test:types": "tsd",
"watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build"
},
"dependencies": {
"@slack/logger": "^5.0.0",
"@slack/types": "^3.0.0",
"@types/node": ">=20",
"@types/retry": "0.12.0",
"eventemitter3": "^5.0.1",
"p-queue": "^6",
"p-retry": "^4",
"retry": "^0.13.1"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/sinon": "^21",
"busboy": "^1",
"nock": "^14",
"sinon": "^21",
"tsd": "^0.33.0"
},
"tsd": {
"directory": "test/types"
}
}