-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.44 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@slack/web-api",
"version": "7.13.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": ">= 18",
"npm": ">= 8.6.0"
},
"repository": "slackapi/node-slack-sdk",
"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 ./coverage",
"docs": "npx typedoc --plugin typedoc-plugin-markdown",
"mocha": "mocha --config ./test/.mocharc.json \"./src/**/*.spec.ts\"",
"prepack": "npm run build",
"test": "npm run test:types && npm run test:integration && npm run test:unit",
"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",
"test:unit": "npm run build && c8 --config ./test/.c8rc.json npm run mocha",
"watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build"
},
"dependencies": {
"@slack/logger": "^4.0.0",
"@slack/types": "^2.18.0",
"@types/node": ">=18.0.0",
"@types/retry": "0.12.0",
"axios": "^1.11.0",
"eventemitter3": "^5.0.1",
"form-data": "^4.0.4",
"is-electron": "2.2.2",
"is-stream": "^4",
"p-queue": "^6",
"p-retry": "^4",
"retry": "^0.13.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1",
"@types/busboy": "^1.5.4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/sinon": "^21",
"busboy": "^1",
"c8": "^10.1.2",
"chai": "^4",
"mocha": "^11",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"nock": "^14",
"shx": "^0.4.0",
"sinon": "^21",
"source-map-support": "^0.5.21",
"ts-node": "^10",
"tsd": "^0.33.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.9.3"
},
"tsd": {
"directory": "test/types"
}
}