1
0
Fork 0

Updated Readme, bower added as dep, postinstall runs bower install

This commit is contained in:
Joe L. Wroten 2015-11-01 23:07:45 -06:00
parent e41603f702
commit 5c2d4a0b82
2 changed files with 13 additions and 2 deletions

View file

@ -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

View file

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