phaser/package.json

57 lines
1.7 KiB
JSON
Raw Normal View History

2016-11-22 01:51:59 +00:00
{
"name": "phaser",
2018-08-20 16:04:59 +00:00
"version": "3.12.0-beta3",
2018-07-13 16:28:08 +00:00
"release": "Silica",
2016-11-22 01:51:59 +00:00
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.",
2018-02-13 03:23:52 +00:00
"author": "Richard Davey <rich@photonstorm.com> (http://www.photonstorm.com)",
2016-11-22 01:51:59 +00:00
"logo": "https://raw.github.com/photonstorm/phaser/master/phaser-logo-small.png",
"homepage": "http://phaser.io",
"bugs": "https://github.com/photonstorm/phaser/issues",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"main": "./src/phaser.js",
2016-11-22 01:51:59 +00:00
"repository": {
"type": "git",
"url": "https://photonstorm@github.com/photonstorm/phaser.git"
},
"scripts": {
2018-05-16 23:20:27 +00:00
"help": "node scripts/help.js",
"build": "webpack",
"watch": "webpack --watch",
2017-07-31 10:48:34 +00:00
"dist": "webpack --config webpack.dist.config.js",
"plugin.cam3d": "webpack --config plugins/camera3d/webpack.config.js",
2017-10-11 16:06:21 +00:00
"lint": "eslint --config .eslintrc.json \"src/**/*.js\"",
2018-03-05 01:40:11 +00:00
"lintfix": "eslint --config .eslintrc.json \"src/**/*.js\" --fix",
2018-05-02 10:36:20 +00:00
"sloc": "node-sloc \"./src\" --include-extensions \"js\"",
"bundleshaders": "node scripts/bundle-shaders.js",
2018-05-02 10:36:20 +00:00
"postinstall": "node scripts/support.js"
2016-11-22 01:51:59 +00:00
},
"keywords": [
"2d",
"HTML5",
"WebGL",
"canvas",
"game",
"javascript",
"physics",
"tweens",
"typescript",
"web audio"
2016-11-22 03:11:33 +00:00
],
2016-11-22 16:25:54 +00:00
"devDependencies": {
2018-03-20 12:24:42 +00:00
"clean-webpack-plugin": "^0.1.19",
2018-05-02 10:36:20 +00:00
"eslint": "^4.19.1",
"eslint-plugin-es5": "^1.3.1",
2018-05-02 10:36:20 +00:00
"fs-extra": "^6.0.0",
2018-07-11 11:34:12 +00:00
"node-sloc": "^0.1.11",
2018-07-12 00:14:52 +00:00
"uglifyjs-webpack-plugin": "^1.2.7",
2018-05-16 23:20:27 +00:00
"vivid-cli": "^1.1.2",
2018-07-12 00:14:52 +00:00
"webpack": "^4.16.0",
"webpack-cli": "^2.1.5",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
2018-05-02 10:36:20 +00:00
"eventemitter3": "^3.1.0"
2016-11-22 03:11:33 +00:00
}
2016-11-22 01:51:59 +00:00
}