forked from rwaldron/johnny-five
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (101 loc) · 4.24 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
{
"name": "johnny-five",
"description": "Firmata based Arduino Programming Framework.",
"version": "0.7.2",
"homepage": "https://github.com/rwldrn/johnny-five",
"author": {
"name": "Rick Waldron <waldron.rick@gmail.com>",
"email": "waldron.rick@gmail.com"
},
"contributors": [
{ "name": "Adam Hyland", "email": "<protonk@gmail.com>" },
{ "name": "Andreas Haugstrup Pedersen", "email": "<haugstrup@podio.com>" },
{ "name": "Andrew Homeyer", "email": "<homeyer@gmail.com>" },
{ "name": "Ben Gillies", "email": "<bengillies@gmail.com>" },
{ "name": "Carl Danley", "email": "<carldanley@gmail.com>" },
{ "name": "Chris Williams", "email": "<chris@saferaging.com>" },
{ "name": "Colin Vernon", "email": "<colin@littlebits.cc>" },
{ "name": "Corey Daniels", "email": "<corey@skookum.com>" },
{ "name": "FotoVerite", "email": "<mzbphoto@gmail.com>" },
{ "name": "Francis Gulotta", "email": "<wizard@roborooter.com>" },
{ "name": "Irene Ros", "email": "<irene@bocoup.com>" },
{ "name": "Jonathan Beri", "email": "<jmberi@gmail.com>" },
{ "name": "Julian Gautier", "email": "<julian.gautier@alumni.neumont.edu>" },
{ "name": "Linus Larsson", "email": "<linus@devshm.net>" },
{ "name": "Mike Breen", "email": "<hardbap@gmail.com>" },
{ "name": "Mike Harsch", "email": "<mike@harschsystems.com>" },
{ "name": "Mike Sherov", "email": "<mike.sherov@gmail.com>" },
{ "name": "Paul Tagliamonte", "email": "<paultag@sunlightfoundation.com>" },
{ "name": "Rahul Ravikumar", "email": "<rahulrav@a2z.com>" },
{ "name": "Randall A. Gordon", "email": "<randall@randallagordon.com>" },
{ "name": "Rebecca Murphey", "email": "<rmurphey@gmail.com>" },
{ "name": "Ryan Neufeld", "email": "<ryan@neucode.org>" },
{ "name": "Scott González", "email": "<scott.gonzalez@gmail.com>" },
{ "name": "Swift", "email": "<theycallmeswift@gmail.com>" },
{ "name": "Travis Thieman", "email": "<travis.thieman@gmail.com>" },
{ "name": "Vincent Agnano", "email": "<vincent.agnano@scopyleft.fr>" },
{ "name": "Cole", "email": "<mcg42387@gmail.com>" },
{ "name": "Divan Visagie", "email": "<visagiedivan@gmail.com>" },
{ "name": "Sara Gorecki", "email": "<sgorecki@gmail.com>" },
{ "name": "Raquel Velez", "email": "<rockbot01@gmail.com>" },
{ "name": "Tim Walker", "email": "<tim.twalker@gmail.com>" },
{ "name": "Toby Miller", "email": "<tmiller@localhost.localhost>" },
{ "name": "Richard Key", "email": "<rich@busyrich.com>" },
{ "name": "Patrick Clark", "email": "<pat@hellop.at>" },
{ "name": "Boros Márton", "email": "<martonboros@gmail.com>" },
{ "name": "Jeremy Morrell", "email": "<morrell.jeremy@gmail.com>" },
{ "name": "Bob Holt", "email": "<bobholt@gmail.com>" },
{ "name": "Dwayn Matthies", "email": "<dwayn.matthies@gmail.com>" },
{ "name": "AJ Fisher", "email": "<ajfisher.td@gmail.com>" },
{ "name": "Julian Duque", "email": "<julianduquej@gmail.com>" },
{ "name": "Daan van Berkel", "email": "<daan.v.berkel.1980@gmail.com>" },
{ "name": "Oli Evans", "email": "<oli@zilla.org.uk>" },
{ "name": "Cory Gackenheimer", "email": "<cory.gack@gmail.com>" },
{ "name": "Ray Pierce", "email": "<ray@digitalpierce.com>" }
],
"keywords": [
"arduino", "usb", "serial", "serialport", "firmata"
],
"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.10.0"
},
"dependencies": {
"colors": ">=0.5.1",
"firmata": ">=0.2.9",
"lodash": ">=0.1.0",
"es6-collections": ">=0.0.1",
"socket.io": "latest",
"compulsive": "latest",
"temporal": "latest",
"descriptor": "latest",
"serialport": "latest",
"optimist": "~0.5.2",
"async": "~0.2.9",
"keypress": "latest"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"sinon": "~1.7.3",
"grunt-jsbeautifier": "~0.2.2"
},
"keywords": [],
"scripts": {
"test" : "grunt"
}
}