forked from rwaldron/johnny-five
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 5.59 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "johnny-five",
"description": "The JavaScript Arduino Programming Framework.",
"version": "0.8.2",
"homepage": "https://github.com/rwldrn/johnny-five",
"author": {
"name": "Rick Waldron <[email protected]>",
"email": "[email protected]"
},
"contributors": [
{ "name": "Adam Hyland", "email": "<[email protected]>" },
{ "name": "Andreas Haugstrup Pedersen", "email": "<[email protected]>" },
{ "name": "Andrew Homeyer", "email": "<[email protected]>" },
{ "name": "Ben Gillies", "email": "<[email protected]>" },
{ "name": "Carl Danley", "email": "<[email protected]>" },
{ "name": "Chris Williams", "email": "<[email protected]>" },
{ "name": "Colin Vernon", "email": "<[email protected]>" },
{ "name": "Corey Daniels", "email": "<[email protected]>" },
{ "name": "FotoVerite", "email": "<[email protected]>" },
{ "name": "Francis Gulotta", "email": "<[email protected]>" },
{ "name": "Irene Ros", "email": "<[email protected]>" },
{ "name": "Jonathan Beri", "email": "<[email protected]>" },
{ "name": "Julian Gautier", "email": "<[email protected]>" },
{ "name": "Linus Larsson", "email": "<[email protected]>" },
{ "name": "Mike Breen", "email": "<[email protected]>" },
{ "name": "Mike Harsch", "email": "<[email protected]>" },
{ "name": "Mike Sherov", "email": "<[email protected]>" },
{ "name": "Paul Tagliamonte", "email": "<[email protected]>" },
{ "name": "Rahul Ravikumar", "email": "<[email protected]>" },
{ "name": "Randall A. Gordon", "email": "<[email protected]>" },
{ "name": "Rebecca Murphey", "email": "<[email protected]>" },
{ "name": "Ryan Neufeld", "email": "<[email protected]>" },
{ "name": "Scott González", "email": "<[email protected]>" },
{ "name": "Swift", "email": "<[email protected]>" },
{ "name": "Travis Thieman", "email": "<[email protected]>" },
{ "name": "Vincent Agnano", "email": "<[email protected]>" },
{ "name": "Cole", "email": "<[email protected]>" },
{ "name": "Divan Visagie", "email": "<[email protected]>" },
{ "name": "Sara Gorecki", "email": "<[email protected]>" },
{ "name": "Raquel Velez", "email": "<[email protected]>" },
{ "name": "Tim Walker", "email": "<[email protected]>" },
{ "name": "Toby Miller", "email": "<[email protected]>" },
{ "name": "Richard Key", "email": "<[email protected]>" },
{ "name": "Patrick Clark", "email": "<[email protected]>" },
{ "name": "Boros Márton", "email": "<[email protected]>" },
{ "name": "Jeremy Morrell", "email": "<[email protected]>" },
{ "name": "Bob Holt", "email": "<[email protected]>" },
{ "name": "Dwayn Matthies", "email": "<[email protected]>" },
{ "name": "AJ Fisher", "email": "<[email protected]>" },
{ "name": "Julian Duque", "email": "<[email protected]>" },
{ "name": "Daan van Berkel", "email": "<[email protected]>" },
{ "name": "Oli Evans", "email": "<[email protected]>" },
{ "name": "Cory Gackenheimer", "email": "<[email protected]>" },
{ "name": "Ray Pierce", "email": "<[email protected]>" },
{ "name": "Jonathan Clem", "email": "<[email protected]>" },
{ "name": "achingbrain", "email": "<[email protected]>" },
{ "name": "Jeff Albrecht", "email": "<[email protected]>" },
{ "name": "Isaac Durazo", "email": "<[email protected]>" },
{ "name": "Pawel Szymczykowski", "email": "<[email protected]>" },
{ "name": "Alex Crooks", "email": "<[email protected]>" },
{ "name": "Donovan Buck", "email": "<[email protected]>" },
{ "name": "Taha Hesham", "email": "<[email protected]>" },
{ "name": "Alfonso de la Osa", "email": "<[email protected]>" },
{ "name": "Donald Averill", "email": "<[email protected]" },
{ "name": "Bryan Hughes", "email": "<[email protected]>" },
{ "name": "Robert Myers", "email": "<[email protected]>" },
{ "name": "David Resseguie", "email": "<[email protected]>" },
{ "name": "Lyza Danger Gardner", "email": "<[email protected]>" },
{ "name": "Adam Magaluk", "email": "<[email protected]>" },
{ "name": "Udo Kramer", "email": "<[email protected]>" },
{ "name": "Joseph Weakley", "email": "<[email protected]>" }
],
"keywords": [
"arduino", "raspberrypi", "usb", "serial", "serialport", "firmata", "robot", "spark", "spark core", "spark-io", "raspberrypi", "raspberry pi", "rpi", "raspi-io", "intel galileo", "galileo", "galileo-io"
],
"repository": {
"type": "git",
"url": "git://github.com/rwldrn/johnny-five.git"
},
"bugs": {
"url": "https://github.com/rwldrn/johnny-five/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rwldrn/johnny-five/blob/master/LICENSE-MIT"
}
],
"main": "lib/johnny-five",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"colors": ">=0.5.1",
"lodash": "latest",
"es6-shim": "latest",
"temporal": "latest",
"descriptor": "latest",
"nanotimer": "0.3.1"
},
"optionalDependencies": {
"firmata": ">=0.2.9",
"serialport": "latest",
"galileo-io": "latest"
},
"devDependencies": {
"async": "~0.9.0",
"copy-paste": "~0.3.0",
"optimist": "~0.6.1",
"keypress": "latest",
"sinon": "~1.10.2",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-jsbeautifier": "~0.2.2"
},
"scripts": {
"test": "grunt"
}
}