Skip to content

Instantly share code, notes, and snippets.

@JustinBeckwith
Created November 2, 2015 02:32
Show Gist options
  • Save JustinBeckwith/b866ce3a37e356bee174 to your computer and use it in GitHub Desktop.
Save JustinBeckwith/b866ce3a37e356bee174 to your computer and use it in GitHub Desktop.
engines package.json
{
"name": "koa-appengine",
"version": "1.0.0",
"description": "An example of deploying a koa app to Google App Engine",
"main": "app.js",
"dependencies": {
"koa": "^0.21.0"
},
"devDependencies": {},
"scripts": {
"start": "node --harmony app.js",
"deploy": "gcloud preview app deploy app.yaml --set-default --project koa-demo"
},
"repository": {
"type": "git",
"url": "http://github.com/JustinBeckwith/appengine-nodejs-samples"
},
"keywords": [
"nodejs",
"appengine",
"koa"
],
"engines" : {
"node" : "5.0.0"
},
"author": "Justin Beckwith",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustinBeckwith/appengine-nodejs-samples/issues"
},
"homepage": "https://github.com/JustinBeckwith/appengine-nodejs-samples"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment