Skip to content

Instantly share code, notes, and snippets.

@chiehwen
Created July 2, 2014 13:33
Show Gist options
  • Save chiehwen/e0c101c73eb15205c3ba to your computer and use it in GitHub Desktop.
Save chiehwen/e0c101c73eb15205c3ba to your computer and use it in GitHub Desktop.
a manifest file that provide some useful info to Bower, like dependencies, ignored files, version and etc. This is similar to Node’s package.json or Ruby’s Gemfile.
{
"name": "ProjectName",
"version": "0.0.1",
"authors": [
"Chieh-Wen Yang <[email protected]>"
],
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"jquery": "~2.1.1",
"angular": "~1.2.19",
"d3": "~3.4.9",
"foundation": "5.3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment