Skip to content

Commit df8751e

Browse files
author
Lawrence Goldstien
committed
Add license jQuery plugin manifest and update package.json
1 parent ed0c1d5 commit df8751e

File tree

3 files changed

+60
-3
lines changed

3 files changed

+60
-3
lines changed

LICENSE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Lawrence Goldstien
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

dragpan.jquery.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "DragPan",
3+
"title": "jQuery DragPan",
4+
"description": "jQuery plugin allowing easy click and drag to pan on elements.",
5+
"keywords": [
6+
"scrolling",
7+
"drag",
8+
"pan",
9+
"user interaction"
10+
],
11+
"version": "0.0.6",
12+
"author": {
13+
"name": "Lawrence Goldstien",
14+
"email": "[email protected]",
15+
"url": "onmylemon.co.uk"
16+
},
17+
"maintainers": [
18+
{
19+
"name": "Lawrence Goldstien",
20+
"email": "[email protected]",
21+
"url": "onmylemon.co.uk"
22+
}
23+
],
24+
"licenses": [
25+
{
26+
"type": "MIT",
27+
"url": "https://github.com/lgoldstien/jquery-dragpan/blob/master/LICENSE.md"
28+
}
29+
],
30+
"bugs": "https://github.com/lgoldstien/jquery-dragpan/issues",
31+
"homepage": "https://github.com/lgoldstien/jquery-dragpan",
32+
"docs": "https://github.com/lgoldstien/jquery-dragpan/blob/master/README.md",
33+
"download": "https://github.com/lgoldstien/jquery-dragpan/releases",
34+
"dependencies": {
35+
"jquery": ">=1.9"
36+
}
37+
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "jquery-dragpan",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"author": "Lawrence Goldstien",
5-
"description": "jQuery plugin allowing easy click and drag to pan on elements",
5+
"description": "jQuery plugin allowing easy click and drag to pan on elements.",
66
"contributors": [
77
{
88
"name": "Lawrence Goldstien",
@@ -15,7 +15,7 @@
1515
"url": "git://github.com/lgoldstien/jquery-dragpan.git"
1616
},
1717
"dependencies": {
18-
"jquery": "1.9.x"
18+
"jquery": ">=1.9"
1919
},
2020
"keywords": ["Scrolling", "Drag", "Pan", "User Interaction"]
2121
}

0 commit comments

Comments
 (0)