package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "jquery-touchswipe",
  3. "title": "Touch Swipe",
  4. "description": "A jquery plugin to be used on touch devices such as iPad, iPhone, Android etc, to react to swipe gestures.",
  5. "keywords": [
  6. "touchSwipe",
  7. "touch",
  8. "swipe",
  9. "gestures",
  10. "tocuhevent",
  11. "jquery"
  12. ],
  13. "main": "./jquery.touchSwipe.min.js",
  14. "author": {
  15. "name": "Matt Bryson"
  16. },
  17. "version": "1.6.19",
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/mattbryson/TouchSwipe-Jquery-Plugin.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/mattbryson/TouchSwipe-Jquery-Plugin/issues"
  24. },
  25. "licenses": [
  26. {
  27. "type": "MIT",
  28. "url": "https://raw.githubusercontent.com/mattbryson/TouchSwipe-Jquery-Plugin/master/LICENCE"
  29. },
  30. {
  31. "type": "GPL V2",
  32. "url": "https://raw.githubusercontent.com/mattbryson/TouchSwipe-Jquery-Plugin/master/LICENCE"
  33. }
  34. ],
  35. "readmeFilename": "README.md",
  36. "homepage": "http://labs.rampinteractive.co.uk/touchSwipe/demos/",
  37. "devDependencies": {
  38. "docdash": "^0.3.0",
  39. "jsdoc": "^3.5.5",
  40. "uglify-js": "^2.6.2"
  41. },
  42. "scripts": {
  43. "docs": "jsdoc jquery.touchSwipe.js --readme README.md --destination ./docs --template node_modules/docdash --tutorials ./demos ",
  44. "minify": "uglifyjs jquery.touchSwipe.js --output jquery.touchSwipe.min.js --compress --comments",
  45. "build": "npm run docs && npm run minify"
  46. }
  47. }