{
"name": "pixi.js",
"version": "4.0.0",
"description": "Pixi.js is a fast lightweight 2D library that works across all devices.",
"author": "Mat Groves",
"contributors": [
"Ivan Popelyshev <ivan.popelyshev@gmail.com>",
"Matt Karl <matt@mattkarl.com>",
"Chad Engler <chad@pantherdev.com>",
"Richard Davey <rdavey@gmail.com>"
],
"main": "./src/index.js",
"homepage": "http://goodboydigital.com/",
"bugs": "https://github.com/pixijs/pixi.js/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/pixi.js.git"
},
"scripts": {
"clean": "rimraf bin && mkdirp bin",
"prestart": "npm run clean",
"start": "parallelshell \"npm run watch:debug\" \"npm run watch:release\"",
"watch:debug": "watchify src/index.js -s PIXI -o bin/pixi.js -dv",
"watch:release": "watchify src/index.js -s PIXI -o bin/pixi.min.js -dv",
"test": "npm run build && testem ci",
"lint": "jshint --reporter=scripts/reporter.js scripts src",
"prebuild": "npm run lint && npm run clean",
"build": "pixify --name pixi",
"docs": "jsdoc -c scripts/jsdoc.conf.json -R README.md"
},
"files": [
"bin/",
"src/",
"CONTRIBUTING.md",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"async": "^1.5.2",
"bit-twiddle": "^1.0.2",
"earcut": "^2.0.7",
"eventemitter3": "^1.1.1",
"glslify": "^5.0.2",
"ismobilejs": "^0.4.0",
"object-assign": "^4.0.1",
"pixi-gl-core": "^1.0.2",
"resource-loader": "^1.6.4"
},
"devDependencies": {
"browserify-versionify": "^1.0.6",
"chai": "^3.5.0",
"del": "^2.2.0",
"jaguarjs-jsdoc": "^1.0.0",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"jshint-stylish-summary": "^0.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"parallelshell": "^2.0.0",
"pixify": "^1.2.0",
"rimraf": "^2.5.3",
"testem": "^1.8.1",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"glslify",
"browserify-versionify"
]
}
}