-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 KB
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
{
"name": "pcduino-io",
"description": "pcDuino IO Plugin for Johnny-Five",
"version": "0.3.0",
"homepage": "https://github.com/rwaldron/pcduino-io",
"author": {
"name": "Rick Waldron <waldron.rick@gmail.com>",
"email": "waldron.rick@gmail.com"
},
"contributors": [],
"keywords": [
"pcduino",
"io",
"arduino",
"firmata",
"johnny-five"
],
"repository": {
"type": "git",
"url": "git://github.com/rwaldron/pcduino-io.git"
},
"bugs": {
"url": "https://github.com/rwaldron/pcduino-io/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rwaldron/pcduino-io/blob/master/LICENSE-MIT"
}
],
"main": "lib/pcduino-io",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"es6-shim": "latest"
},
"optionalDependencies": {
"iotduino": "0.1.8",
"i2c-bus": "0.11.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-jsbeautifier": "~0.2.2",
"rewire": "~2.0.0",
"sinon": "~1.7.3"
},
"scripts": {
"test": "grunt"
},
"js-flags": "--harmony"
}