forked from howdyai/botkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "botkit",
"version": "0.7.4",
"description": "Building blocks for Building Bots",
"main": "lib/Botkit.js",
"types": "lib/Botkit.d.ts",
"jest": {
"verbose": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/test/legacy/"
],
"testMatch": [
"**/test/**/*.js"
],
"collectCoverage": false
},
"dependencies": {
"async": "^2.6.1",
"back": "^1.0.2",
"body-parser": "^1.18.3",
"botbuilder": "^3.16.0",
"botkit-studio-sdk": "^1.0.8",
"chalk": "^2.4.1",
"ciscospark": "^1.48.0",
"clone": "2.1.2",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"debug": "^4.1.0",
"email-addresses": "^3.0.2",
"express": "^4.16.4",
"googleapis": "^34.0.0",
"https-proxy-agent": "^2.2.1",
"jfs": "^0.3.0",
"localtunnel": "^1.9.1",
"md5": "^2.2.1",
"mustache": "^3.0.0",
"prompts": "^1.1.1",
"request": "^2.88.0",
"requestretry": "^3.0.2",
"simple-xmpp": "^1.3.0",
"twilio": "^3.23.1",
"ware": "^1.3.0",
"ws": "^6.1.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"jest-cli": "^24.1.0",
"mkdirp": "^0.5.1",
"mocha": "^5.1.1",
"nock": "^10.0.0",
"winston": "^2.3.1"
},
"scripts": {
"pretest:disabled": "npm run lint",
"lint": "eslint .",
"test": "jest",
"test:facebook": "jest test/facebook --coverage",
"test-watch": "jest --watch"
},
"bin": {
"botkit": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/howdyai/botkit.git"
},
"bugs": {
"url": "https://github.com/howdyai/botkit/issues"
},
"homepage": "http://howdy.ai/botkit",
"keywords": [
"bots",
"chatbots",
"slack",
"cisco spark",
"webex",
"facebook messenger",
"twilio",
"microsoft bot framework",
"web chat",
"jabber",
"microsoft teams",
"google hangouts"
],
"author": "[email protected]",
"license": "MIT"
}