package.json 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "propagating-hammerjs",
  3. "version": "1.5.0",
  4. "description": "Extend hammer.js with event propagation",
  5. "main": "propagating.js",
  6. "module": "./src/propagating.js",
  7. "files": [
  8. "examples",
  9. "src",
  10. "HISTORY.md",
  11. "LICENSE",
  12. "README.md",
  13. "propagating.js"
  14. ],
  15. "scripts": {
  16. "build": "rollup ./src/propagating.js --file propagating.js --format umd --output.name propagating",
  17. "prepublishOnly": "npm run build"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/josdejong/propagating-hammerjs.git"
  22. },
  23. "keywords": [
  24. "hammerjs",
  25. "touch",
  26. "gestures",
  27. "event",
  28. "propagation"
  29. ],
  30. "author": "Jos de Jong",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/josdejong/propagating-hammerjs/issues"
  34. },
  35. "homepage": "https://github.com/josdejong/propagating-hammerjs",
  36. "devDependencies": {
  37. "rollup": "^2.29.0"
  38. },
  39. "dependencies": {
  40. "hammerjs": "^2.0.8"
  41. }
  42. }