-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
{
"name": "pimatic-gpio",
"description": "Provides Actuators and Sensors for the Raspberry Pi GPIO Pins.",
"author": "Oliver Schneider <oliverschneider89+sweetpi@gmail.com> (http://sweetpi.de)",
"main": "gpio.coffee",
"files": [
"doc",
"test",
"gpio.coffee",
"README.md",
"device-config-schema.coffee",
"gpio-config-schema.coffee",
"LICENSE"
],
"version": "0.9.1",
"homepage": "http://github.com/pimatic/pimatic",
"keywords": [
"pimatic",
"pimatic-plugin",
"gpio"
],
"repository": {
"type": "git",
"url": "git://github.com/pimatic/pimatic-gpio.git"
},
"license": "GPL-2.0",
"configSchema": "gpio-config-schema.coffee",
"dependencies": {
"onoff": "^4.1.1"
},
"peerDependencies": {
"pimatic": ">=0.9.0 <1.0.0"
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"contributors": [
{
"name": "sweet pi - sweet home",
"url": "https://github.com/sweetpi"
},
{
"name": "thost96",
"url": "https://github.com/thost96"
},
{
"name": "Wiebe Nieuwenhuis",
"url": "https://github.com/sweebee"
},
{
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
}
]
}