-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "pimatic-log-reader",
"description": "Provides predicates for log entries in log files of other programs.",
"author": "Oliver Schneider <[email protected]> (http://sweetpi.de)",
"main": "log-reader.coffee",
"files": [
"log-reader.coffee",
"device-config-schema.coffee",
"log-reader-config-schema.coffee",
"README.md",
"LICENSE"
],
"version": "0.9.3",
"homepage": "http://github.com/pimatic/pimatic",
"repository": {
"type": "git",
"url": "git://github.com/pimatic/pimatic-log-reader.git"
},
"license": "GPL-2.0",
"configSchema": "log-reader-config-schema.coffee",
"dependencies": {
"line-by-line": "^0.1.1",
"tail": "1.2.3"
},
"bundledDependencies": [
"line-by-line",
"tail"
],
"peerDependencies": {
"pimatic": ">=0.9.0 <1.0.0"
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"contributors": [
{
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
},
{
"name": "Markus Minini",
"url": "https://github.com/xento"
}
],
"keywords": [
"pimatic",
"pimatic-plugin",
"log-reader"
]
}