forked from bumbu/svg-pan-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.34 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.0",
"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/ariutta/svg-pan-zoom"
},
"bugs": {
"url": "https://github.com/ariutta/svg-pan-zoom/issues"
},
"contributors": [
"Andrea Leofreddi <[email protected]>",
"Anders Riutta <[email protected]>",
"Zeng Xiaohui",
"Barry Coughlan (https://github.com/bcoughlan)",
"Risingson",
"bumbu alex (http://bumbu.me>)",
"Alexander Pico <[email protected]>",
"Kyran Burraston (http://kyranburraston.co.uk)",
"Risingson (https://github.com/Risingson)",
"Siddhanathan Shanmugam <[email protected]>",
"Karina Simard (https://github.com/ksimard)",
"Christopher Clark <[email protected]>",
"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": "^8.0.3",
"gulp": "^3.8.10",
"gulp-concat": "^2.4.3",
"gulp-config-sync": "git://github.com/bumbu/gulp-config-sync",
"gulp-header": "^1.2.2",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-plumber": "^0.6.6",
"gulp-qunit": "^1.1.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.2",
"gulp-watch": "^3.0.0",
"qunitjs": "^2.2.1",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0"
}
}