forked from ngryman/jquery.finger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jquery.finger",
"version": "0.1.0",
"description": "jQuery Finger unifies click and touch events by removing the 300ms delay on touch devices. It also provide a common set of events to handle basic gestures such as drag and pinch. Small (< 1kb gzipped), it is focused on performance, is well tested and ... also supports jQuery delegated events.",
"homepage": "https://github.com/ngryman/jquery.finger",
"keywords": [
"jquery",
"tap",
"doubletap",
"swipe",
"flick",
"drag",
"move",
"gestures",
"touch",
"tappable",
"event",
"mobile",
"tablet"
],
"categories": [
"UI",
"DOM",
"Shims",
"Utilities"
],
"jam": {
"main": "dist/jquery.finger.js",
"include": [
"dist/jquery.finger.js",
"dist/jquery.finger.min.js"
],
"dependencies": {
"jquery": "~1.7.0"
}
},
"author": {
"name": "Nicolas Gryman",
"email": "ngryman@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ngryman/jquery.finger.git"
},
"bugs": {
"url": "https://github.com/ngryman/jquery.finger/issues",
"email": "ngryman@gmail.com"
},
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "grunt mocha"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"grunt-contrib-connect": "~0.4.0",
"grunt-mocha": "~0.4.0"
}
}