Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
947d14b75b |
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"presets": [
|
|
||||||
["@babel/env", {
|
|
||||||
"targets": {
|
|
||||||
"browsers": [
|
|
||||||
">0.25%",
|
|
||||||
"not ie 11",
|
|
||||||
"not op_mini all"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"modules": false
|
|
||||||
}]
|
|
||||||
],
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
name: Deploy static content to S3
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: ['main', 'master']
|
|
||||||
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: 'pages'
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v3.7.0
|
|
||||||
with:
|
|
||||||
node-version: '13'
|
|
||||||
package-manager-cache: false
|
|
||||||
- run: npm install --include=dev
|
|
||||||
- name: Build project
|
|
||||||
run: npm run build
|
|
||||||
- name: Minio Deploy
|
|
||||||
uses: passidel/minio-deploy-action@v1
|
|
||||||
with:
|
|
||||||
endpoint: ${{ secrets.MINIO_ENDPOINT }}
|
|
||||||
access_key: ${{ secrets.MINIO_ACCESS_KEY }}
|
|
||||||
secret_key: ${{ secrets.MINIO_SECRET_KEY }}
|
|
||||||
bucket: 'swarm-static-websites'
|
|
||||||
source_dir: './dist'
|
|
||||||
target_dir: '/pascal.syma.dev/MI2Mario/'
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# System and IDE files
|
|
||||||
Thumbs.db
|
|
||||||
.DS_Store
|
|
||||||
.idea
|
|
||||||
*.suo
|
|
||||||
*.sublime-project
|
|
||||||
*.sublime-workspace
|
|
||||||
|
|
||||||
# Vendors
|
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# Build
|
|
||||||
dist/
|
|
||||||
/npm-debug.log
|
|
||||||
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 943 B After Width: | Height: | Size: 943 B |
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
@@ -1,65 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent {
|
|
||||||
label 'node&&windows'
|
|
||||||
}
|
|
||||||
|
|
||||||
stages {
|
|
||||||
stage ('Initialize') {
|
|
||||||
steps {
|
|
||||||
echo 'Initializing..'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build') {
|
|
||||||
steps {
|
|
||||||
echo 'Building..'
|
|
||||||
bat 'npm install'
|
|
||||||
bat 'npm run build'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Test') {
|
|
||||||
steps {
|
|
||||||
echo 'Testing..'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Archive') {
|
|
||||||
when {
|
|
||||||
branch 'master'
|
|
||||||
expression {
|
|
||||||
currentBuild.result == null || currentBuild.result == 'SUCCESS'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
echo 'Deploying....'
|
|
||||||
dir("dist") {
|
|
||||||
withCredentials([sshUserPrivateKey(credentialsId: 'id_rsa', keyFileVariable: 'identity', passphraseVariable: '', usernameVariable: 'userName')])
|
|
||||||
{
|
|
||||||
script {
|
|
||||||
def remote = [:]
|
|
||||||
remote.name = "1blu"
|
|
||||||
remote.host = "webhosting72.1blu.de"
|
|
||||||
remote.allowAnyHosts = true
|
|
||||||
remote.user = userName
|
|
||||||
remote.identityFile = identity
|
|
||||||
|
|
||||||
sshCommand remote: remote, command: "mkdir www/mi2.mama.productions/releases/${BUILD_NUMBER}"
|
|
||||||
sshPut remote: remote, from: "${WORKSPACE}\\dist\\", into: "www/mi2.mama.productions/releases/${BUILD_NUMBER}"
|
|
||||||
sshCommand remote: remote, command: "rm www/mi2.mama.productions/public"
|
|
||||||
sshCommand remote: remote, command: "ln -s releases/${BUILD_NUMBER}/dist www/mi2.mama.productions/public"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bat 'git init'
|
|
||||||
bat 'git add .'
|
|
||||||
bat 'git config --global user.email "jenkins@bosym.de"'
|
|
||||||
bat 'git config --global user.name "Jenkins"'
|
|
||||||
bat 'git commit -m "Deploy by Jenkins"'
|
|
||||||
withCredentials([usernamePassword(credentialsId: 'e3d97a6f-476f-489f-a207-4766a1c420cf', usernameVariable: 'username', passwordVariable: 'password')])
|
|
||||||
{
|
|
||||||
bat "git push --force --quiet \"https://$username:$password@git.bosym.de/Pascal/MI2Mario.git\" master:gh-pages"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2017 Richard Davey
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
# Medieninformatik 2 SoSe 2020 Mario
|
|
||||||
|
|
||||||
A Phaser 3 project template with ES6 support via [Babel 7](https://babeljs.io/) and [Webpack 4](https://webpack.js.org/)
|
|
||||||
that includes hot-reloading for development and production-ready builds.
|
|
||||||
|
|
||||||
Loading images via JavaScript module `import` is also supported.
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
[Node.js](https://nodejs.org) is required to install dependencies and run scripts via `npm`.
|
|
||||||
|
|
||||||
## Available Commands
|
|
||||||
|
|
||||||
| Command | Description |
|
|
||||||
|---------|-------------|
|
|
||||||
| `npm install` | Install project dependencies |
|
|
||||||
| `npm start` | Build project and open web server running project |
|
|
||||||
| `npm run build` | Builds code bundle with production settings (minification, uglification, etc..) |
|
|
||||||
|
|
||||||
## Writing Code
|
|
||||||
|
|
||||||
After cloning the repo, run `npm install` from your project directory. Then, you can start the local development
|
|
||||||
server by running `npm start`.
|
|
||||||
|
|
||||||
|
|
||||||
After starting the development server with `npm start`, you can edit any files in the `src` folder
|
|
||||||
and webpack will automatically recompile and reload your server (available at `http://localhost:8080`
|
|
||||||
by default).
|
|
||||||
|
|
||||||
## Customizing Template
|
|
||||||
|
|
||||||
### Babel
|
|
||||||
You can write modern ES6+ JavaScript and Babel will transpile it to a version of JavaScript that you
|
|
||||||
want your project to support. The targeted browsers are set in the `.babelrc` file and the default currently
|
|
||||||
targets all browsers with total usage over "0.25%" but excludes IE11 and Opera Mini.
|
|
||||||
|
|
||||||
```
|
|
||||||
"browsers": [
|
|
||||||
">0.25%",
|
|
||||||
"not ie 11",
|
|
||||||
"not op_mini all"
|
|
||||||
]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Webpack
|
|
||||||
If you want to customize your build, such as adding a new webpack loader or plugin (i.e. for loading CSS or fonts), you can
|
|
||||||
modify the `webpack/base.js` file for cross-project changes, or you can modify and/or create
|
|
||||||
new configuration files and target them in specific npm tasks inside of `package.json'.
|
|
||||||
|
|
||||||
## Deploying Code
|
|
||||||
After you run the `npm run build` command, your code will be built into a single bundle located at
|
|
||||||
`dist/bundle.min.js` along with any other assets you project depended.
|
|
||||||
|
|
||||||
If you put the contents of the `dist` folder in a publicly-accessible location (say something like `http://mycoolserver.com`),
|
|
||||||
you should be able to open `http://mycoolserver.com/index.html` and play your game.
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 250 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 283 KiB |
|
After Width: | Height: | Size: 285 KiB |
|
After Width: | Height: | Size: 145 KiB |
|
After Width: | Height: | Size: 401 KiB |
|
After Width: | Height: | Size: 399 KiB |
|
After Width: | Height: | Size: 413 KiB |
|
After Width: | Height: | Size: 414 KiB |
|
After Width: | Height: | Size: 169 KiB |
|
After Width: | Height: | Size: 406 KiB |
|
After Width: | Height: | Size: 584 KiB |
|
After Width: | Height: | Size: 403 KiB |
|
After Width: | Height: | Size: 290 KiB |
|
After Width: | Height: | Size: 417 KiB |
|
After Width: | Height: | Size: 420 KiB |
|
After Width: | Height: | Size: 258 KiB |
|
After Width: | Height: | Size: 296 KiB |
|
After Width: | Height: | Size: 592 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 165 KiB |
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square70x70logo src="mstile-70x70.png"/>
|
||||||
|
<square150x150logo src="mstile-150x150.png"/>
|
||||||
|
<wide310x150logo src="mstile-310x150.png"/>
|
||||||
|
<square310x310logo src="mstile-310x310.png"/>
|
||||||
|
<TileColor>#000</TileColor>
|
||||||
|
|
||||||
|
</tile>
|
||||||
|
|
||||||
|
</msapplication>
|
||||||
|
|
||||||
|
</browserconfig>
|
||||||
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 533 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
"name": "Cave Knight",
|
||||||
|
"short_name": "cave-knight",
|
||||||
|
"description": "Cave Knight",
|
||||||
|
"dir": "auto",
|
||||||
|
"lang": "en-US",
|
||||||
|
"display": "standalone",
|
||||||
|
"orientation": "any",
|
||||||
|
"start_url": "../",
|
||||||
|
"background_color": "#000",
|
||||||
|
"theme_color": "#333",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "android-chrome-36x36.png",
|
||||||
|
"sizes": "36x36",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-48x48.png",
|
||||||
|
"sizes": "48x48",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-72x72.png",
|
||||||
|
"sizes": "72x72",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-96x96.png",
|
||||||
|
"sizes": "96x96",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-144x144.png",
|
||||||
|
"sizes": "144x144",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-256x256.png",
|
||||||
|
"sizes": "256x256",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-384x384.png",
|
||||||
|
"sizes": "384x384",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"version": "2.1.0",
|
||||||
|
"name": "Cave Knight",
|
||||||
|
"description": "Cave Knight",
|
||||||
|
"icons": {
|
||||||
|
"60": "firefox_app_60x60.png",
|
||||||
|
"128": "firefox_app_128x128.png",
|
||||||
|
"512": "firefox_app_512x512.png"
|
||||||
|
},
|
||||||
|
"developer": {
|
||||||
|
"name": "MaMa Productions",
|
||||||
|
"url": "https://mama.productions"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"version": "2.1.0",
|
||||||
|
"api_version": 1,
|
||||||
|
"layout": {
|
||||||
|
"logo": "yandex-browser-50x50.png",
|
||||||
|
"color": "#000",
|
||||||
|
"show_title": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,97 @@
|
|||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author Felipe Alfonso <@bitnenfer>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2018 Photon Storm Ltd.
|
||||||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Florian Vazelle
|
||||||
|
* @author Geoffrey Glaive
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Niklas von Hertzen (https://github.com/niklasvh/base64-arraybuffer)
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author Igor Ognichenko <ognichenko.igor@gmail.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author Benjamin D. Richards <benjamindrichards@gmail.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Vladimir Agafonkin
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Stefan Hedman <schteppe@gmail.com> (http://steffe.se)
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Joachim Grill <joachim@codeandweb.com>
|
||||||
|
* @copyright 2018 CodeAndWeb GmbH
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://github.com/photonstorm/phaser3-plugin-template/blob/master/LICENSE|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author samme <samme.npm@gmail.com>
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Richard Davey <rich@photonstorm.com>
|
||||||
|
* @author Florian Mertens
|
||||||
|
* @copyright 2019 Photon Storm Ltd.
|
||||||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||||||
|
*/
|
||||||
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 192 B |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -1,58 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "cave-knight",
|
|
||||||
"version": "2.1.0",
|
|
||||||
"description": "Medieninformatik 2 SoSe 2020 Cave Knight",
|
|
||||||
"main": "src/index.js",
|
|
||||||
"scripts": {
|
|
||||||
"build": "webpack --config webpack/prod.js ",
|
|
||||||
"start": "webpack-dev-server --config webpack/base.js --open"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://git.bosym.de/git/Pascal/MI2Mario.git"
|
|
||||||
},
|
|
||||||
"author": "MaMa Productions <info@mama.productions> (https://mama.productions)",
|
|
||||||
"contributors": [
|
|
||||||
{
|
|
||||||
"name": "Pascal Syma",
|
|
||||||
"email": "pascal@syma.dev",
|
|
||||||
"url": "https://syma.dev"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Antonio Martinez Casadesus",
|
|
||||||
"email": "antonio@mama.productions",
|
|
||||||
"url": "https://mama.productions"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Richard Davey",
|
|
||||||
"email": "rdavey@gmail.com",
|
|
||||||
"url": "http://www.photonstorm.com"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://git.bosym.de/Pascal/MI2Mario/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://git.bosym.de/Pascal/MI2Mario#readme",
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/core": "^7.7.2",
|
|
||||||
"@babel/preset-env": "^7.7.1",
|
|
||||||
"babel-loader": "^8.0.6",
|
|
||||||
"clean-webpack-plugin": "^3.0.0",
|
|
||||||
"favicons-webpack-plugin": "^2.0.0",
|
|
||||||
"file-loader": "^4.2.0",
|
|
||||||
"html-webpack-plugin": "^3.2.0",
|
|
||||||
"raw-loader": "^3.1.0",
|
|
||||||
"terser-webpack-plugin": "^2.2.1",
|
|
||||||
"webpack": "^4.41.2",
|
|
||||||
"webpack-cli": "^3.3.10",
|
|
||||||
"webpack-dev-server": "^3.9.0",
|
|
||||||
"webpack-merge": "^4.2.2",
|
|
||||||
"workbox-webpack-plugin": "^5.1.3"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"phaser": "^3.20.1",
|
|
||||||
"phaser3-rex-plugins": "^1.1.18"
|
|
||||||
}
|
|
||||||
}
|
|
||||||