forked from howdyai/botkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.46 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
{
"name": "botkit",
"version": "0.5.4",
"description": "Building blocks for Building Bots",
"main": "lib/Botkit.js",
"dependencies": {
"async": "^2.1.5",
"back": "^1.0.1",
"body-parser": "^1.17.1",
"botbuilder": "^3.7.0",
"botkit-studio-sdk": "^1.0.2",
"ciscospark": "^0.7.69",
"clone": "2.1.1",
"command-line-args": "^4.0.2",
"crypto": "0.0.3",
"express": "^4.15.2",
"https-proxy-agent": "^1.0.0",
"jfs": "^0.2.6",
"localtunnel": "^1.8.2",
"md5": "^2.2.1",
"mustache": "^2.3.0",
"promise": "^7.1.1",
"request": "^2.81.0",
"twilio": "^2.11.1",
"ware": "^1.3.0",
"ws": "^2.2.2"
},
"devDependencies": {
"jest-cli": "^20.0.1",
"jscs": "^3.0.7",
"mocha": "^3.2.0",
"should": "^11.2.1",
"should-sinon": "0.0.5",
"sinon": "^2.1.0",
"winston": "^2.3.1"
},
"scripts": {
"pretest": "jscs ./lib/ ./__test__ --fix",
"test": "jest --coverage",
"test-legacy": "mocha ./tests/*.js",
"test-watch": "jest --watch"
},
"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",
"facebook messenger",
"twilio ipm",
"microsoft bot framework"
],
"author": "[email protected]",
"license": "MIT",
"jest": {
"testEnvironment": "node"
}
}