-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "pimatic-probe",
"description": "A pimatic plugin to probe HTTP(S) and TCP services",
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig/pimatic-probe"
},
"main": "probe",
"files": [
"probe.coffee",
"probe-config-schema.coffee",
"device-config-schema.coffee",
"LICENSE",
"HISTORY.md",
"README.md"
],
"version": "0.3.4",
"homepage": "https://github.com/mwittig/pimatic-probe",
"keywords": [
"pimatic",
"pimatic-plugin",
"http-ping",
"tcp-ping",
"port-probing"
],
"repository": {
"type": "git",
"url": "git://github.com/mwittig/pimatic-probe.git"
},
"bugs": {
"url": "https://github.com/mwittig/pimatic-probe/issues"
},
"license": "GPL-2.0",
"configSchema": "probe-config-schema.coffee",
"dependencies": {
"follow-redirects": "^1.7.0",
"pimatic-plugin-commons": "^0.9.10"
},
"peerDependencies": {
"pimatic": ">=0.8.0 <1.0.0"
},
"engines": {
"node": ">= 4",
"npm": ">1.1.x"
}
}