-
Notifications
You must be signed in to change notification settings - Fork 388
/
package.json
72 lines (72 loc) · 2.32 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
66
67
68
69
70
71
72
{
"name": "svg-pan-zoom",
"version": "3.6.2",
"main": "dist/svg-pan-zoom.js",
"module": "src/svg-pan-zoom.js",
"types": "dist/svg-pan-zoom.d.ts",
"browser": "src/browserify.js",
"license": "BSD-2-Clause",
"description": "JavaScript library for panning and zooming an SVG image from the mouse, touches and programmatically.",
"scripts": {
"start": "gulp",
"lint": "tslint 'dist/svg-pan-zoom.d.ts'",
"test": "tsc && gulp test",
"build": "gulp build",
"server": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bumbu/svg-pan-zoom"
},
"bugs": {
"url": "https://github.com/bumbu/svg-pan-zoom/issues"
},
"contributors": [
"Andrea Leofreddi <a.leofreddi@vleo.net>",
"Anders Riutta <git@andersriutta.com>",
"Zeng Xiaohui",
"Barry Coughlan (https://github.com/bcoughlan)",
"Risingson",
"bumbu alex (http://bumbu.me>)",
"Alexander Pico <apico@gladstone.ucsf.edu>",
"Kyran Burraston (http://kyranburraston.co.uk)",
"Risingson (https://github.com/Risingson)",
"Siddhanathan Shanmugam <siddhanathan+social@gmail.com>",
"Karina Simard (https://github.com/ksimard)",
"Christopher Clark <chris.clark@sparkfun.com>",
"Vladimir Prus (http://vladimirprus.com)",
"Barry Coughlan (https://github.com/bcoughlan)",
"Ionică Bizău (http://ionicabizau.net/)",
"Ciprian Placintă (https://github.com/CiprianPlacinta)",
"Riccardo Santoro (https://github.com/VeNoMiS)",
"César Vidril (https://github.com/Yimiprod)",
"Androl Genhald (https://github.com/AndrolGenhald)",
"James Newell (https://github.com/musicfuel)",
"KoenkookpotPlasmans (https://github.com/KoenkookpotPlasmans)",
"Hassan Shaikley (http://hassanshaikley.github.io/)"
],
"keywords": [
"svg",
"pan",
"zoom"
],
"devDependencies": {
"browserify": "^16.5.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-header": "^2.0.9",
"gulp-if": "^2.0.2",
"gulp-qunit": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"prettier": "^1.18.2",
"qunit": "^2.9.3",
"qunitjs": "npm:qunit@^2.9.3",
"tslint": "^4.5.1",
"typescript": "^3.6.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}