From 5c2d4a0b82b0494bce787b54262c4559ce4647de Mon Sep 17 00:00:00 2001 From: "Joe L. Wroten" Date: Sun, 1 Nov 2015 23:07:45 -0600 Subject: [PATCH] Updated Readme, bower added as dep, postinstall runs bower install --- README.md | 8 ++++++++ package.json | 7 +++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44ac154..16b0537 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,10 @@ # roman-numeral-calculator Whole number calculator that also displays the results in Roman Numerals. + +--- + +## Getting Started + +1. Clone this repository locally. +2. While in the project directory, install dependencies with `npm install` +3. Open `index.html` in your browser diff --git a/package.json b/package.json index be428c7..307f2ea 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,11 @@ "description": "Sample Project for Q2E Interview", "main": "index.html", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "postinstall": "bower install" }, "author": "Joe L. Wroten", - "license": "ISC" + "license": "ISC", + "devDependencies": { + "bower": "^1.6.5" + } }