"name":... "version":... "property:... "homepage":"http://{username}.github.io/{repo-name}"
"scripts": { // existing stuff "install gh-pages": "npm install gh-pages --save-dev", "predeploy": "npm run build", "deploy": "gh-pages -d build" }
That'll install the gh-pages package. It may take time as that downloads.
git remote add origin git@github.com:{username}/{reponame}.git
That'll build the package and then push to GitHub. On success, it'll print "Published" in the Run pane.