Skip to content

Instantly share code, notes, and snippets.

@galcyurio
Created April 23, 2018 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galcyurio/09014c384faba266f5b2345035389ff4 to your computer and use it in GitHub Desktop.
Save galcyurio/09014c384faba266f5b2345035389ff4 to your computer and use it in GitHub Desktop.
bower-installer 를 활용한 bower.json 예제
{
"name": "tut-require-js",
"authors": [
"galcyurio <galcyurio@gmail.com>"
],
"description": "",
"main": "",
"license": "MIT",
"homepage": "",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"requirejs": "^2.3.5",
"jquery": "^3.3.1",
"angular": "^1.6.10"
},
"install": {
"options": {
"includePackageNameInInstallPath": false
},
"path": {
"js": "js/lib",
"css": "css/lib"
},
"sources": {
"bootstrap": {
"mapping": [
"bower_components/bootstrap/dist/css/bootstrap.css",
"bower_components/bootstrap/dist/js/bootstrap.js"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment