Unresolvable dependency `botfiles`
"botfiles": "file:///Users/emckean/Code/blank-lambda-bot/botfiles",
It's hardcoded to your local repo path, is it necessary? It causes npm install to fail before we get to run npm install ./botfiles --save.
@eladnava: It's not immediately clear from the instructions, but under Source Data in the readme is the command to fix this:
npm install --save ./YOURPATH/botfiles should resolve this and update your package.json to have that set to "file:botfiles"
OK cool, but the README does state cloning the repo first, then running npm install without running the command you mentioned first:
https://github.com/emckean/blank-lambda-bot#instructions
@eladnava Yep, not disputing that, just sharing what worked for me in the hopes that it'd help you!