Browse Source

Use bower for component management

Thomas Dy 10 years ago
parent
commit
20b1fb0863
3 changed files with 25 additions and 0 deletions
  1. 3 0
      .bowerrc
  2. 1 0
      .gitignore
  3. 21 0
      bower.json

+ 3 - 0
.bowerrc

@@ -0,0 +1,3 @@
+{
+  "directory": "public/components"
+}

+ 1 - 0
.gitignore

@@ -3,3 +3,4 @@ project/project
 project/target
 target
 tmp
+public/components

+ 21 - 0
bower.json

@@ -0,0 +1,21 @@
+{
+  "name": "taboo",
+  "version": "0.0.0",
+  "authors": [
+    "Thomas Dy <thatsmydoing@gmail.com>"
+  ],
+  "license": "MIT",
+  "private": true,
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "public/components",
+    "test",
+    "tests"
+  ],
+  "dependencies": {
+    "angular": "~1.2.6",
+    "jquery": "~2.0.3"
+  }
+}