forked from guidone/node-red-contrib-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
{
"name": "node-red-contrib-chatbot",
"version": "0.6.17",
"description": "REDBot a Chat bot for a full featured chat bot for Telegram**, Facebook Messenger and Slack. Almost no coding skills required",
"scripts": {
"test": "mocha",
"tunnel": "ngrok http 127.0.0.1:1880"
},
"repository": {
"type": "git",
"url": "https://github.com/guidone/node-red-contrib-chatbot.git"
},
"node-red": {
"nodes": {
"chatbot-message": "chatbot-message.js",
"chatbot-context": "chatbot-context.js",
"chatbot-topic": "chatbot-topic.js",
"chatbot-apiai": "chatbot-apiai.js",
"chatbot-language": "chatbot-language.js",
"chatbot-listen": "chatbot-listen.js",
"chatbot-parse": "chatbot-parse.js",
"chatbot-command": "chatbot-command.js",
"chatbot-analyze": "chatbot-analyze.js",
"chatbot-location": "chatbot-location.js",
"chatbot-ask": "chatbot-ask.js",
"chatbot-inline-buttons": "chatbot-inline-buttons.js",
"chatbot-request": "chatbot-request.js",
"chatbot-qrcode": "chatbot-qr-code.js",
"chatbot-conversation": "chatbot-conversation.js",
"chatbot-debug": "chatbot-debug.js",
"chatbot-waiting": "chatbot-waiting.js",
"chatbot-authorized": "chatbot-authorized.js",
"chatbot-transport": "chatbot-transport.js",
"chatbot-rivescript": "chatbot-rivescript.js",
"chatbot-telegram-receive": "chatbot-telegram-receive.js"
}
},
"maintainers": [
{
"name": "Guido Bellomo",
"email": "guido.bellomo@gmail.com",
"web": "http://javascript-jedi.com"
}
],
"keywords": [
"node-red"
],
"author": "Guido Bellomo <guido.bellomo@gmail.com>",
"license": "ISC",
"dependencies": {
"@slack/client": "^3.5.1",
"apiai": "^3.0.0",
"cli-color": "^1.1.0",
"cookie-parser": "^1.4.3",
"fast-levenshtein": "^1.1.3",
"languagedetect": "^1.1.1",
"moment": "^2.13.0",
"node-emoji": "^1.3.1",
"node-telegram-bot-api": "^0.24.0",
"qr-image": "^3.1.0",
"request": "^2.73.0",
"rivescript": "1.17.1",
"sanitize-filename": "^1.6.0",
"smooch-core": "^2.0.0",
"speakeasy-nlp": "^0.2.2",
"underscore": "^1.8.3",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"chai": "^3.5.0"
}
}