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" + } }