forked from pixi-viewport/pixi-cull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "pixi-cull",
"version": "1.0.1",
"description": "a library to visibly cull objects designed to work with pixi.js",
"main": "dist/index.js",
"types": "@types/index.d.ts",
"scripts": {
"test": "budo docs/index.js:bundle.js --dir docs",
"upgrade": "yarn upgrade-interactive --latest",
"build-demo": "browserify docs/index.js -o docs/bundle.js",
"docs": "jsdoc -c .jsdoc.json",
"transpile": "babel code/ --out-dir dist --source-maps inline",
"bundle": "browserify dist/index.js -o bundle/pixi-cull.js && uglifyjs -mc -o bundle/pixi-cull.min.js bundle/pixi-cull.js",
"prepublishOnly": "yarn run transpile && yarn run build-demo && yarn run bundle && yarn run docs"
},
"keywords": [
"pixi.js",
"cull",
"pixi-viewport",
"viewport",
"spatial",
"hash",
"simple",
"cull"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/pixi-cull.git"
},
"bugs": {
"url": "https://github.com/davidfig/pixi-cull/issues"
},
"homepage": "https://github.com/davidfig/pixi-cull#readme",
"author": "David S. Figatner",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"pixi.js": "^5.0.0-rc.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"fork-me-github": "^1.2.0",
"jsdoc": "^3.6.5",
"pixi-viewport": "^4.13.2",
"pixi.js": "5.3.3",
"uglify-js": "^3.10.1",
"yy-fps": "^1.1.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.8.0"
}
}