forked from rwaldron/johnny-five
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (100 loc) · 4.2 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
{
"name": "johnny-five",
"description": "Firmata based Arduino Programming Framework.",
"version": "0.7.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]>" }
],
"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"
},
"keywords": [],
"scripts": {
"test" : "grunt"
}
}