UNPKG

2.8 kBJSONView Raw
1{
2 "name": "@slack/web-api",
3 "version": "6.7.2",
4 "description": "Official library for using the Slack Platform's Web API",
5 "author": "Slack Technologies, LLC",
6 "license": "MIT",
7 "keywords": [
8 "slack",
9 "web-api",
10 "bot",
11 "client",
12 "http",
13 "api",
14 "proxy",
15 "rate-limiting",
16 "pagination"
17 ],
18 "main": "dist/index.js",
19 "types": "./dist/index.d.ts",
20 "files": [
21 "dist/**/*"
22 ],
23 "engines": {
24 "node": ">= 12.13.0",
25 "npm": ">= 6.12.0"
26 },
27 "repository": "slackapi/node-slack-sdk",
28 "homepage": "https://slack.dev/node-slack-sdk/web-api",
29 "publishConfig": {
30 "access": "public"
31 },
32 "bugs": {
33 "url": "https://github.com/slackapi/node-slack-sdk/issues"
34 },
35 "scripts": {
36 "prepare": "npm run build",
37 "build": "npm run build:clean && tsc",
38 "build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output",
39 "lint": "eslint --ext .ts src",
40 "test": "npm run lint && npm run build && npm run test:mocha && npm run test:types",
41 "test:mocha": "nyc mocha --config .mocharc.json src/*.spec.js",
42 "test:types": "tsd",
43 "coverage": "codecov -F webapi --root=$PWD",
44 "ref-docs:model": "api-extractor run",
45 "watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build",
46 "build:deno": "esbuild --bundle --define:process.cwd=String --define:process.version='\"v1.15.2\"' --define:process.title='\"deno\"' --define:Buffer=dummy_buffer --inject:./deno-shims/buffer-shim.js --inject:./deno-shims/xhr-shim.js --target=esnext --format=esm --outfile=./mod.js src/index.ts"
47 },
48 "dependencies": {
49 "@slack/logger": "^3.0.0",
50 "@slack/types": "^2.0.0",
51 "@types/is-stream": "^1.1.0",
52 "@types/node": ">=12.0.0",
53 "axios": "^0.27.2",
54 "eventemitter3": "^3.1.0",
55 "form-data": "^2.5.0",
56 "is-electron": "2.2.0",
57 "is-stream": "^1.1.0",
58 "p-queue": "^6.6.1",
59 "p-retry": "^4.0.0"
60 },
61 "devDependencies": {
62 "@aoberoi/capture-console": "^1.1.0",
63 "@microsoft/api-extractor": "^7.3.4",
64 "@types/chai": "^4.1.7",
65 "@types/mocha": "^5.2.6",
66 "@typescript-eslint/eslint-plugin": "^4.4.1",
67 "@typescript-eslint/parser": "^4.4.0",
68 "busboy": "^0.3.1",
69 "chai": "^4.2.0",
70 "codecov": "^3.2.0",
71 "esbuild": "^0.13.15",
72 "eslint": "^7.32.0",
73 "eslint-config-airbnb-base": "^14.2.1",
74 "eslint-config-airbnb-typescript": "^12.3.1",
75 "eslint-plugin-import": "^2.22.1",
76 "eslint-plugin-jsdoc": "^30.6.1",
77 "eslint-plugin-node": "^11.1.0",
78 "mocha": "^9.1.0",
79 "nock": "^13.2.6",
80 "nyc": "^15.1.0",
81 "shelljs": "^0.8.3",
82 "shx": "^0.3.2",
83 "sinon": "^7.2.7",
84 "source-map-support": "^0.5.10",
85 "ts-node": "^10.8.1",
86 "tsd": "^0.13.1",
87 "typescript": "^4.1"
88 },
89 "tsd": {
90 "directory": "test/types"
91 }
92}