phaser/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2016-11-22 01:51:59 +00:00
{
"name": "phaser",
"version": "3.4.0",
2018-03-13 13:21:34 +00:00
"release": "Tetsuo",
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": {
"build": "webpack",
"watch": "webpack --watch",
2017-07-31 10:48:34 +00:00
"dist": "webpack --config webpack.dist.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-03-20 12:24:42 +00:00
"sloc": "node-sloc \"./src\" --include-extensions \"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",
"eslint": "^4.19.0",
"fs-extra": "^5.0.0",
2017-10-11 16:06:21 +00:00
"node-sloc": "^0.1.10",
"raw-loader": "^0.5.1",
2018-03-20 12:24:42 +00:00
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
2018-03-27 16:28:55 +00:00
"eventemitter3": "^3.0.1",
"npm": "^5.8.0"
2016-11-22 03:11:33 +00:00
}
2016-11-22 01:51:59 +00:00
}