-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
46 lines (46 loc) · 1.16 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "jquery-hoverintent",
"version": "1.10.2",
"description": "A jQuery plugin that attempts to determine the user's intent on mouseover and thus delay or prevent the accidental firing of callbacks.",
"keywords": [
"browser",
"delay",
"events",
"hover",
"hoverintent",
"intent",
"jquery",
"jquery-plugin",
"mouse",
"mouseenter",
"mouseover",
"plugin"
],
"main": "jquery.hoverIntent.js",
"homepage": "http://briancherne.github.io/jquery-hoverIntent/",
"author": "Brian Cherne <[email protected]>",
"contributors": [
"usmonster (https://github.com/usmonster)"
],
"repository": {
"type": "git",
"url": "https://github.com/briancherne/jquery-hoverIntent.git"
},
"bugs": {
"url": "https://github.com/briancherne/jquery-hoverIntent/issues"
},
"dependencies": {
"jquery": ">=1.7.0"
},
"peerDependencies": {
"jquery": ">=1.7.0"
},
"devDependencies": {
"uglify-js": "^3.6.0"
},
"scripts": {
"build": "uglifyjs jquery.hoverIntent.js -c --comments '/^!/' -o jquery.hoverIntent.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT"
}