-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (41 loc) · 1005 Bytes
/
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
{
"name": "node-red-contrib-rasa-actionserver",
"version": "1.3.1",
"description": "action server for rasa conversational assistants",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/weberi/node-red-contrib-rasa-actionserver.git"
},
"keywords": [
"node-red",
"nodes",
"rasa",
"rasa chatbot",
"rasa action server"
],
"author": "weberi",
"license": "MIT",
"node-red": {
"version": ">=2.1.5",
"nodes": {
"sendtext": "sendtext.js",
"sendbuttons": "sendbuttons.js",
"sendextra": "sendextra.js",
"setslots": "setslots.js",
"init": "init.js",
"finish": "finish.js",
"simrasa": "simrasa.js"
}
},
"devDependencies": {
"chai": "^4.3.4",
"chai-like": "^1.1.1",
"chai-things": "^0.2.0",
"mocha": "^9.1.4",
"node-red": "^4.0.5",
"node-red-node-test-helper": "^0.3.4"
}
}