1 | {
|
2 | "name": "@slack/client",
|
3 | "version": "5.0.2",
|
4 | "description": "Legacy wrapper for official Slack Platform's Web API, RTM API, and Incoming Webhook libraries. Use @slack/web-api, @slack/rtm-api, or @slack/webhook instead.",
|
5 | "author": "Slack Technologies, Inc.",
|
6 | "license": "MIT",
|
7 | "keywords": [
|
8 | "slack",
|
9 | "web-api",
|
10 | "rtm-api",
|
11 | "bot",
|
12 | "client",
|
13 | "http",
|
14 | "websocket",
|
15 | "request",
|
16 | "api",
|
17 | "proxy",
|
18 | "rate-limiting",
|
19 | "pagination",
|
20 | "state",
|
21 | "connection"
|
22 | ],
|
23 | "main": "dist/index.js",
|
24 | "types": "./dist/index.d.ts",
|
25 | "files": [
|
26 | "dist/**/*"
|
27 | ],
|
28 | "engines": {
|
29 | "node": ">= 8.9.0",
|
30 | "npm": ">= 5.5.1"
|
31 | },
|
32 | "repository": "slackapi/node-slack-sdk",
|
33 | "homepage": "https://slack.dev/node-slack-sdk/tutorials/migrating-to-v5",
|
34 | "publishConfig": {
|
35 | "access": "public"
|
36 | },
|
37 | "bugs": {
|
38 | "url": "https://github.com/slackapi/node-slack-sdk/issues"
|
39 | },
|
40 | "scripts": {
|
41 | "prepare": "npm run build",
|
42 | "build": "npm run build:clean && tsc",
|
43 | "build:clean": "shx rm -rf ./dist",
|
44 | "lint": "tslint --project .",
|
45 | "test": "npm run build && echo \"Tests are not implemented.\" && exit 0"
|
46 | },
|
47 | "dependencies": {
|
48 | "@slack/logger": "^1.0.0",
|
49 | "@slack/rtm-api": "^5.0.2",
|
50 | "@slack/types": "^1.1.0",
|
51 | "@slack/web-api": "^5.1.0",
|
52 | "@slack/webhook": "^5.0.1"
|
53 | },
|
54 | "devDependencies": {
|
55 | "shx": "^0.3.2",
|
56 | "tslint": "^5.13.1",
|
57 | "tslint-config-airbnb": "^5.11.1",
|
58 | "typescript": "^3.3.3333"
|
59 | },
|
60 | "gitHead": "35b40af1dc28ef40cb00eb9a47f902e73c27b03f"
|
61 | }
|