forked from jschnurr/botkit-middleware-dialogflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "botkit-middleware-dialogflow",
"version": "2.1.0",
"description": "Middleware for using Dialogflow (formerly Api.ai) with Botkit-powered bots",
"main": "src/botkit-middleware-dialogflow.js",
"scripts": {
"test": "npm run lint && mocha 'test/**/test*' --exit",
"lint": "eslint src/*.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/jschnurr/botkit-middleware-dialogflow.git"
},
"keywords": [
"botkit",
"apiai",
"dialogflow",
"bots",
"slack"
],
"author": {
"name": "Jeff Schnurr",
"email": "jschnurr@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jschnurr/botkit-middleware-dialogflow/issues"
},
"homepage": "https://github.com/jschnurr/botkit-middleware-dialogflow#readme",
"dependencies": {
"apiai": "^4.0.3",
"debug": "^3.1.0",
"dialogflow": "^0.8.2",
"hasha": "^3.0.0",
"lodash": "^4.17.10",
"uuid": "^3.3.2"
},
"devDependencies": {
"botkit": "^0.7.4",
"chai": "^4.1.2",
"clone": "^2.1.2",
"eslint": "^5.5.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"nock": "^9.6.1",
"sinon": "^6.2.0"
}
}