Created
January 8, 2015 03:26
-
-
Save PereiraM/a5b4b6bd7eba7bdd9f5a to your computer and use it in GitHub Desktop.
Sample bower file. Jquery, Handlebars, Underscore, Foundation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "projectName", | |
"version": "0.0.9", | |
"authors": [ | |
"Michael Pereira" | |
], | |
"description": "Project description", | |
"main": "index.html", | |
"license": "MIT", | |
"ignore": [ | |
"**/.*", | |
"node_modules", | |
"bower_components", | |
"test", | |
"tests" | |
], | |
"dependencies": { | |
"modernizr": "~2.8.3", | |
"jquery": "~2.1.1", | |
"normalize-css": "~3.0.2" | |
}, | |
"devDependencies": { | |
"handlebars": "~2.0.0", | |
"foundation": "~5.5.0", | |
"underscore": "~1.7.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment