-
Notifications
You must be signed in to change notification settings - Fork 674
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@slack/rtm-api",
"version": "7.0.4",
"description": "Official library for using the Slack Platform's Real Time Messaging API",
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"rtm-api",
"bot",
"client",
"http",
"websocket",
"api",
"proxy",
"state",
"connection"
],
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18",
"npm": ">=8.6.0"
},
"repository": "slackapi/node-slack-sdk",
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/rtm-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 && npm run test:integration",
"test:integration": "mocha --config .mocharc.json test/integration.spec.js"
},
"dependencies": {
"@slack/logger": "^4",
"@slack/web-api": "^7.10.0",
"@types/node": ">=18",
"eventemitter3": "^5",
"finity": "^0.5.4",
"p-cancelable": "^4",
"p-queue": "^6",
"ws": "^8"
},
"devDependencies": {
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/sinon": "^17",
"@types/ws": "^8",
"chai": "^4",
"mocha": "^10",
"shx": "^0.3.2",
"sinon": "^21",
"source-map-support": "^0.5.21",
"ts-node": "^10",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.3.3"
}
}