forked from SirBogman/panzoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 820 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
{
"name": "panzoom",
"version": "9.4.1",
"description": "Extensible, mobile friendly pan and zoom framework (supports DOM and SVG).",
"main": "index.js",
"scripts": {
"test": "tap test/*.js",
"build": "browserify -s panzoom ./index.js > dist/panzoom.js && uglifyjs dist/panzoom.js > dist/panzoom.min.js",
"start": "npm run build"
},
"keywords": [
"dom",
"svg",
"pan",
"zoom"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/panzoom"
},
"dependencies": {
"amator": "^1.1.0",
"ngraph.events": "^1.2.1",
"wheel": "^1.0.0"
},
"devDependencies": {
"browserify": "^16.5.1",
"eslint": "^7.13.0",
"jsdom": "^16.3.0",
"tap": "^14.10.8",
"uglify-js": "^3.10.0"
}
}