forked from phaserjs/custom-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.79 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
{
"name": "phaser3-custom-build",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --display-modules",
"buildlog": "webpack --json --profile > webpack.build-log.json",
"buildsprite": "webpack --config webpack.config-sprite.js --display-modules",
"buildspritelog": "webpack --config webpack.config-sprite.js --json --profile > webpack.build-sprite-log.json",
"buildboth": "webpack --config webpack.config-both.js --display-modules",
"buildbothlog": "webpack --config webpack.config-both.js --json --profile > webpack.build-both-log.json",
"buildspritesmall": "webpack --config webpack.config-sprite-small-loader.js --display-modules",
"buildspritesmalllog": "webpack --config webpack.config-sprite-small-loader.js --json --profile > webpack.build-sprite-small-loader-log.json",
"buildfull": "webpack --config webpack.config-full.js --display-modules",
"buildfulllog": "webpack --config webpack.config-full.js --json --profile > webpack.build-full-log.json",
"buildcore": "webpack --config webpack.config-core.js --display-modules",
"buildcorelog": "webpack --config webpack.config-core.js --json --profile > webpack.build-core-log.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photonstorm/phaser3-custom-build.git"
},
"author": "Richard Davey <[email protected]> (http://www.photonstorm.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/photonstorm/phaser3-custom-build/issues"
},
"homepage": "https://github.com/photonstorm/phaser3-custom-build#readme",
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"eventemitter3": "^4.0.0",
"phaser": "^3.23.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}