Skip to content

Instantly share code, notes, and snippets.

@lovettbarron
Created December 16, 2012 21:37
Show Gist options
  • Save lovettbarron/4313408 to your computer and use it in GitHub Desktop.
Save lovettbarron/4313408 to your computer and use it in GitHub Desktop.
Was having difficulty compiling johnny-five on Rpi, the bellow seems to have fixed it though by declaring the dependency versions explicitly. When compiling node-gyp on OSX, make sure to have xcode + command line tools installed.
{
"name" : "theProject"
,"preferGlobal": true
, "author":"Relay Studio"
, "client":"theClient"
, "version": "0.0.1"
, "private": true
, "dependencies": {
"express": "3.0"
, "jade" : ">= 0.0.1"
, "serialport" : "1.0.6"
, "node-gyp" : "0.6.1"
, "johnny-five": "0.5.14"
} , "engines" : {
"node" : "0.8.11"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment