forked from slackapi/bolt-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@slack/bolt",
"version": "1.0.1",
"description": "A framework for building Slack apps, fast.",
"author": "Slack Technologies, Inc.",
"license": "MIT",
"keywords": [
"slack",
"bot",
"events-api",
"slash-commands",
"interactive-components",
"api",
"chatops",
"integration",
"slack-app"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.4.1"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output",
"lint": "tslint --project .",
"test": "nyc mocha --config .mocharc.json src/*.spec.ts",
"coverage": "codecov"
},
"repository": "slackapi/bolt",
"homepage": "https://slack.dev/bolt",
"bugs": {
"url": "https://github.com/slackapi/bolt/issues"
},
"dependencies": {
"@slack/logger": "^1.0.0",
"@slack/types": "^1.0.0",
"@slack/web-api": "^5.0.0",
"@types/express": "^4.16.1",
"@types/node": ">=10",
"axios": "^0.18.0",
"express": "^4.16.4",
"raw-body": "^2.3.3",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"rewiremock": "^3.13.4",
"shx": "^0.3.2",
"sinon": "^7.3.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.3"
}
}