package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "svg-pan-zoom",
  3. "version": "3.6.2",
  4. "main": "dist/svg-pan-zoom.js",
  5. "module": "src/svg-pan-zoom.js",
  6. "types": "dist/svg-pan-zoom.d.ts",
  7. "browser": "src/browserify.js",
  8. "license": "BSD-2-Clause",
  9. "description": "JavaScript library for panning and zooming an SVG image from the mouse, touches and programmatically.",
  10. "scripts": {
  11. "start": "gulp",
  12. "lint": "tslint 'dist/svg-pan-zoom.d.ts'",
  13. "test": "tsc && gulp test",
  14. "build": "gulp build",
  15. "server": "node server.js"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/bumbu/svg-pan-zoom"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/bumbu/svg-pan-zoom/issues"
  23. },
  24. "contributors": [
  25. "Andrea Leofreddi <a.leofreddi@vleo.net>",
  26. "Anders Riutta <git@andersriutta.com>",
  27. "Zeng Xiaohui",
  28. "Barry Coughlan (https://github.com/bcoughlan)",
  29. "Risingson",
  30. "bumbu alex (http://bumbu.me>)",
  31. "Alexander Pico <apico@gladstone.ucsf.edu>",
  32. "Kyran Burraston (http://kyranburraston.co.uk)",
  33. "Risingson (https://github.com/Risingson)",
  34. "Siddhanathan Shanmugam <siddhanathan+social@gmail.com>",
  35. "Karina Simard (https://github.com/ksimard)",
  36. "Christopher Clark <chris.clark@sparkfun.com>",
  37. "Vladimir Prus (http://vladimirprus.com)",
  38. "Barry Coughlan (https://github.com/bcoughlan)",
  39. "Ionică Bizău (http://ionicabizau.net/)",
  40. "Ciprian Placintă (https://github.com/CiprianPlacinta)",
  41. "Riccardo Santoro (https://github.com/VeNoMiS)",
  42. "César Vidril (https://github.com/Yimiprod)",
  43. "Androl Genhald (https://github.com/AndrolGenhald)",
  44. "James Newell (https://github.com/musicfuel)",
  45. "KoenkookpotPlasmans (https://github.com/KoenkookpotPlasmans)",
  46. "Hassan Shaikley (http://hassanshaikley.github.io/)"
  47. ],
  48. "keywords": [
  49. "svg",
  50. "pan",
  51. "zoom"
  52. ],
  53. "devDependencies": {
  54. "browserify": "^16.5.0",
  55. "eslint-config-prettier": "^6.5.0",
  56. "eslint-plugin-prettier": "^3.1.1",
  57. "gulp": "^4.0.2",
  58. "gulp-eslint": "^6.0.0",
  59. "gulp-header": "^2.0.9",
  60. "gulp-if": "^2.0.2",
  61. "gulp-qunit": "^2.1.0",
  62. "gulp-rename": "^1.4.0",
  63. "gulp-uglify": "^3.0.2",
  64. "prettier": "^1.18.2",
  65. "qunit": "^2.9.3",
  66. "qunitjs": "npm:qunit@^2.9.3",
  67. "tslint": "^4.5.1",
  68. "typescript": "^3.6.4",
  69. "vinyl-buffer": "^1.0.1",
  70. "vinyl-source-stream": "^2.0.0"
  71. }
  72. }