-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 879 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
{
"name": "node-red-contrib-timeouttrigger",
"version": "0.0.6",
"description": "This node will pipe any received `msg` to its output. At the same time a time-out interval is set. Upon time-out a defined payload is sent. Each new message will reset the time-out.",
"main": "timeouttrigger.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Sineos/node-red-contrib-timeouttrigger.git"
},
"keywords": [
"node-red",
"time-out",
"trigger",
"iot"
],
"author": "Sineos",
"license": "Apache-2.0",
"node-red": {
"nodes": {
"timeouttrigger": "timeouttrigger.js"
}
},
"bugs": {
"url": "https://github.com/Sineos/node-red-contrib-timeouttrigger/issues"
},
"homepage": "https://github.com/Sineos/node-red-contrib-timeouttrigger#readme",
"engines": {
"node": ">=6",
"node-red": ">=1.3.3"
}
}