Skip to content

Commit

Permalink
added bower support, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Detering authored and Brian Detering committed May 16, 2015
1 parent 4665d9f commit bb04b5d
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/*
node_modules
bower_components
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Creates an interface to add and remove a repeatable group of input elements.

###[Demo](http://briandetering.net/repeater)

`bower install jquery.repeater --save`
`npm install jquery.repeater --save`

##Templates

Repeater uses the first "data-repeater-item" as a template for added items.
Expand Down
27 changes: 27 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "jquery.repeater",
"main": "jquery.repeater.js",
"version": "1.0.1",
"homepage": "https://github.com/DubFriend/jquery.repeater",
"description": "repeatable form input interface",
"keywords": [
"input",
"repeat",
"multiple",
"form"
],
"authors": [
"Brian Detering"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"jquery": ">=1.11"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "jquery.repeater",
"version": "1.0.0",
"version": "1.0.1",
"description": "repeatable form input interface",
"main": "index.html",
"main": "jquery.repeater.js",
"directories": {
"test": "test"
},
Expand Down
2 changes: 1 addition & 1 deletion repeater.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "repeater",
"version": "1.0.0",
"version": "1.0.1",
"title": "Repeater",
"author": {
"name": "Brian Detering",
Expand Down

0 comments on commit bb04b5d

Please sign in to comment.