Skip to content

Commit 45b8bfc

Browse files
committed
add bower.json
1 parent 712c036 commit 45b8bfc

4 files changed

Lines changed: 34 additions & 27 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
node_modules
2+
bower_components
23
mock.png
34
.*.sw*
45
.build*
56
jquery.fn.*
7+
/test

bower.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "sortabljs",
3+
"homepage": "https://github.com/SortableJS/polymer-sortablejs",
4+
"main": "sortablejs.html",
5+
"authors": [
6+
"Guten Ye <ywzhaifei@gmail.com>"
7+
],
8+
"description": "Minimalist library for reorderable drag-and-drop lists on modern browsers and touch devices. No jQuery.",
9+
"keywords": [
10+
"sortable",
11+
"reorder",
12+
"list",
13+
"html5",
14+
"drag",
15+
"and",
16+
"drop",
17+
"dnd",
18+
"web-components"
19+
],
20+
"license": "MIT",
21+
"ignore": [
22+
"node_modules",
23+
"bower_components",
24+
"test",
25+
"tests"
26+
],
27+
"dependencies": {
28+
"polymer": "polymer/polymer#^1.6.0",
29+
"Sortable": "sortablejs#^1.4.2"
30+
}
31+
}

package.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

polymer-sortablejs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<link rel="import" href="../polymer/polymer.html">
2-
<script src="../sortablejs/Sortable.js"></script>
2+
<script src="../Sortable/Sortable.js"></script>
33

44
<dom-module id="sortable-js">
55
<template>

0 commit comments

Comments
 (0)