forked from mishk0/slack-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
package.json
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
{
"name": "@getdelta/slackbots",
"version": "1.5.4",
"description": "Simple API for Slack",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Mikhail Mokrushin",
"email": "[email protected]"
},
"homepage": "https://github.com/getdelta/slack-bot-api",
"bugs": {
"url": "https://github.com/getdelta/slack-bot-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/getdelta/slack-bot-api.git"
},
"license": "MIT",
"scripts": {
"build": "tsup index.ts --keep-names --clean --dts --minify"
},
"dependencies": {
"extend": "^3.0.2",
"lodash": "^4.17.15",
"node-fetch": "2",
"ws": "^7.1.1",
"ws-heartbeat": "^1.1.0"
},
"devDependencies": {
"@types/node": "^18.11.6",
"@types/node-fetch": "2",
"@types/ws": "^7.1.1",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"tsup": "^6.3.0",
"typescript": "^4.8.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}