-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
34 lines (34 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "jquery-nearest",
"title": "jQuery Nearest Element",
"description": "jQuery plugin to find the elements in a page that are closest to (or furthest away from) a particular point or element, based on pixel dimensions",
"version": "1.4.0",
"keywords": ["jquery-plugin", "ecosystem:jquery", "nearest", "furthest", "touching", "pixel", "distance"],
"main": "src/jquery.nearest.js",
"files": [
"src/jquery.nearest.js",
"src/jquery.nearest.min.js",
"CONTRIBUTING.md",
"LICENSE.txt",
"README.md"
],
"author": {
"name": "Gilmore Davidson",
"url": "https://shoehornwithteeth.com/"
},
"homepage": "http://gilmoreorless.github.io/jquery-nearest/",
"repository": {
"type": "git",
"url": "git://github.com/gilmoreorless/jquery-nearest.git"
},
"bugs": "https://github.com/gilmoreorless/jquery-nearest/issues",
"licenses": [
{
"type": "MIT",
"url": "http://gilmoreorless.github.io/jquery-nearest/LICENSE.txt"
}
],
"dependencies": {
"jquery": ">=1.4"
}
}