Created
July 2, 2014 13:33
-
-
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.
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.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