-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "nino-io",
"description": "Linino One and Arduino Yun IO Plugin for Johnny-Five. Firmata & YunBridge are NOT required.",
"version": "0.2.1",
"homepage": "https://github.com/rwaldron/nino-io",
"author": {
"name": "Rick Waldron <[email protected]>",
"email": "[email protected]"
},
"contributors": [],
"keywords": [
"linino",
"yun",
"io",
"arduino",
"doghunter",
"firmata",
"johnny-five"
],
"repository": {
"type": "git",
"url": "git://github.com/rwaldron/nino-io.git"
},
"bugs": {
"url": "https://github.com/rwaldron/nino-io/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rwaldron/nino-io/blob/master/LICENSE-MIT"
}
],
"main": "lib/nino-io",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"es6-shim": "latest"
},
"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",
"request": "^2.47.0",
"rewire": "~2.0.0",
"sinon": "~1.7.3"
},
"scripts": {
"test": "grunt",
"postinstall": "node ./binaries/install-i2c-bus.js"
},
"js-flags": "--harmony"
}