-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "jquery-touchswipe",
"title": "Touch Swipe",
"description": "A jquery plugin to be used on touch devices such as iPad, iPhone, Android etc, to react to swipe gestures.",
"keywords": [
"touchSwipe",
"touch",
"swipe",
"gestures",
"tocuhevent",
"jquery"
],
"main": "./jquery.touchSwipe.min.js",
"author": {
"name": "Matt Bryson"
},
"version": "1.6.18",
"repository": {
"type": "git",
"url": "https://github.com/mattbryson/TouchSwipe-Jquery-Plugin.git"
},
"bugs": {
"url": "https://github.com/mattbryson/TouchSwipe-Jquery-Plugin/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/mattbryson/TouchSwipe-Jquery-Plugin/master/LICENCE"
},
{
"type": "GPL V2",
"url": "https://raw.githubusercontent.com/mattbryson/TouchSwipe-Jquery-Plugin/master/LICENCE"
}
],
"readmeFilename": "README.md",
"homepage": "http://labs.rampinteractive.co.uk/touchSwipe/demos/",
"devDependencies": {
"docdash": "^0.3.0",
"jsdoc": "^3.4.0",
"uglify-js": "^2.6.2"
},
"scripts": {
"docs": "jsdoc jquery.touchSwipe.js --readme README.md --destination ./docs --template node_modules/docdash --tutorials ./demos ",
"minify": "uglifyjs jquery.touchSwipe.js --output jquery.touchSwipe.min.js --compress --comments",
"build": "npm run docs && npm run minify"
}
}