forked from pixi-viewport/pixi-viewport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.97 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
{
"name": "pixi-viewport",
"version": "3.9.0",
"description": "A highly configurable viewport/2D camera designed to work with pixi.js. Features include dragging, pinch-to-zoom, mouse wheel zooming, decelerated dragging, follow target, snap to point, snap to zoom, clamping, bouncing on edges, and move on mouse edges.",
"main": "dist/viewport.js",
"types": "@types/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "budo docs/code.js:index.js --dir docs --live",
"build-demo": "browserify docs/code.js -o docs/index.js",
"docs": "jsdoc -c .jsdoc.json",
"transpile": "babel src/ --out-dir dist --source-maps inline",
"library": "cp bundle/pixi-viewport.min.js docs/pixi-viewport.min.js",
"bundle": "browserify dist/viewport.js -o bundle/pixi-viewport.js && uglifyjs -mc -o bundle/pixi-viewport.min.js bundle/pixi-viewport.js",
"bundle-test": "budo src/viewport.js:docs/pixi-viewport.min.js --dir docs",
"prepublishOnly": "npm run transpile && npm run build-demo && npm run bundle && npm run library && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/pixi-viewport.git"
},
"keywords": [
"PIXI",
"pixi.js",
"viewport",
"zoom",
"scroll",
"pinch",
"stage",
"bounce",
"decelerate"
],
"author": "David Figatner",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidfig/pixi-viewport/issues"
},
"homepage": "https://github.com/davidfig/pixi-viewport#readme",
"peerDependencies": {
"pixi.js": ">=4.6.0"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"penner": "^0.1.3"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"clicked": "^2.0.0",
"fork-me-github": "^1.2.0",
"highlight.js": "^9.12.0",
"pixi-ease": "^1.1.2",
"pixi.js": "^4.8.1",
"settingspanel": "^2.0.0",
"yy-counter": "^2.1.0",
"yy-fps": "^1.0.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.7.2"
}
}