-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pimatic-johnny-five",
"description": "Pimatic Plugin for Johnny Five, a Robotics and IoT programming framework.",
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
},
"main": "johnny-five",
"icon": "assets/images/johnny-five-icon.svg",
"files": [
"johnny-five.coffee",
"johnny-five-config-schema.coffee",
"device-config-schema.coffee",
"board-manager.coffee",
"devices",
"actions",
"assets",
"LICENSE",
"HISTORY.md",
"README.md"
],
"keywords": [
"Johnny Five",
"Pimatic"
],
"version": "0.9.12",
"homepage": "https://github.com/mwittig/pimatic-johnny-five/tree/master",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mwittig/pimatic-johnny-five.git"
},
"bugs": {
"url": "https://github.com/mwittig/pimatic-johnny-five/issues"
},
"license": "AGPL-3.0",
"maintainers": [
{
"name": "mwittig",
"url": "https://github.com/mwittig"
}
],
"contributors": [
{
"name": "Ruben Oost",
"email": "[email protected]"
},
{
"name": "Gabriel Bretschner",
"email": "[email protected]"
}
],
"configSchema": "johnny-five-config-schema.coffee",
"config": {
"unsafe-perm": true
},
"dependencies": {
"colornames": "^1.1.1",
"etherport": "git+https://github.com/mwittig/etherport.git#5f3fd5dabf5fc84c8859367d580f45c95fbb7d68",
"etherport-client": "^0.1.3",
"johnny-five": "^0.11.1",
"oled-font-5x7": "^1.0.0",
"oled-js": "^4.0.4",
"pimatic-plugin-commons": "^0.9.5"
},
"optionalDependencies": {
"particle-io": "^0.14.0",
"raspi-io": "^8.0.1",
"pigpio": "^0.5.1"
},
"peerDependencies": {
"pimatic": ">=0.8.0 <1.0.0"
},
"engines": {
"node": ">= 4",
"npm": ">1.1.x"
}
}