forked from manuelstofer/pinchzoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 875 Bytes
/
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
{
"name": "pinch-zoom-js",
"version": "2.3.4",
"description": "Browser library for multi-touch gestures to zoom and drag on any DOM element.",
"author": "Manuel Stofer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/manuelstofer/pinchzoom.git"
},
"keywords": [
"pinchzoom",
"pinch",
"zoom",
"gesture",
"touch",
"drag"
],
"main": "dist/pinch-zoom.umd.js",
"module": "src/pinch-zoom.js",
"files": [
"dist/pinch-zoom.min.js",
"dist/pinch-zoom.umd.js",
"dist/pinch-zoom.umd.min.js",
"src/pinch-zoom.js",
"src/pinch-zoom.d.ts"
],
"typings": "src/pinch-zoom.d.ts",
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-minify": "^0.5.0",
"babel-preset-env": "~1.6.1"
},
"scripts": {
"build": "script/build.sh",
"prepublish": "npm run build"
}
}